-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 1.93 KB
/
package.json
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
63
64
65
66
67
68
69
70
{
"name": "@lorena-ssi/lorena-sdk",
"version": "2.0.8",
"description": "Lorena SDK",
"author": "Alex Puig <[email protected]>",
"license": "MIT",
"main": "index.js",
"module": "src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/lorena-ssi/lorena-sdk.git"
},
"keywords": [
"lorena",
"identity",
"sdk",
"npm",
"node",
"javascript"
],
"bugs": {
"url": "https://github.com/lorena-ssi/lorena-sdk/issues"
},
"homepage": "https://github.com/lorena-ssi/lorena-sdk#readme",
"dependencies": {
"@lorena-ssi/credential-lib": "^1.2.0",
"@lorena-ssi/did-resolver": "^0.4.5",
"@lorena-ssi/matrix-lib": "^1.0.13",
"@lorena-ssi/wallet-lib": "1.1.6",
"@lorena-ssi/zenroom-lib": "1.5.4",
"debug": "^4.1.1",
"did-resolver": "^1.1.0",
"esm": "^3.2.25",
"ipfs-http-client": "^44.1.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-spies": "^1.0.0",
"chai-uuid": "^1.0.6",
"coveralls": "^3.1.0",
"eslint": "^7.7.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-chai-friendly": "^0.6.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsdoc": "^30.2.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.5",
"mocha": "^8.1.1",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0",
"serve": "^11.3.2"
},
"scripts": {
"coverage": "nyc npm run mocha && nyc report --reporter=html",
"coveralls": "nyc npm run mocha && nyc report --reporter=text-lcov | coveralls",
"coverage:serve": "npm run coverage && serve coverage",
"lint": "eslint ./src ./test",
"lint:fix": "eslint ./src ./test --fix",
"mocha": "mocha test --timeout 50000 --bail --require esm",
"test": "npm run mocha"
},
"husky": {
"hooks": {
"pre-commit": "yarn run lint"
}
}
}