-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.69 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@lorena-ssi/maxonrow-lib",
"version": "1.2.3",
"description": "Lorena Maxonrow integration library",
"main": "src/index.js",
"author": "Caelum Labs",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/lorena-ssi/maxonrow-lib.git"
},
"keywords": [
"Lorena",
"Maxonrow",
"Blockchain",
"Identity",
"VerifiedCredentials"
],
"bugs": {
"url": "https://github.com/lorena-ssi/maxonrow-lib/issues"
},
"homepage": "https://github.com/lorena-ssi/maxonrow-lib#readme",
"dependencies": {
"@babel/core": "^7.9.6",
"@lorena-ssi/blockchain-lib": "^1.1.0",
"mxw-sdk-js": "^0.8.2"
},
"devDependencies": {
"@lorena-ssi/zenroom-lib": "^1.5.3",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.1.0",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-chai-friendly": "^0.6.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsdoc": "^24.0.6",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.5",
"mocha": "^7.1.2",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.0.1"
},
"scripts": {
"start": "node src/index.js",
"coverage": "nyc npm run mocha && nyc report --reporter=html",
"coveralls": "nyc npm run mocha && nyc report --reporter=text-lcov | coveralls",
"lint": "eslint ./src",
"lint-fix": "eslint ./src --fix",
"mocha": "mocha test --timeout 50000",
"npm:publish": "npm publish --access public",
"test": "npm run mocha"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}