forked from hyperledger-labs/TrustID
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·56 lines (56 loc) · 1.98 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
{
"name": "coren-id-sdk",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "mocha --timeout 50000 --require ts-node/register dist/test/unit",
"build": "rm -rf dist && tsc",
"build-light": "rm -rf dist-light && tsc --build tsconfig-light.json",
"build-single-file": "rm -rf dist-light && tsc --build tsconfig-singleFile.json",
"start": "tsc && node ./dist/test.js",
"docs": "typedoc --out dist/docs --mode modules .",
"coverage": "rm -rf dist && tsc && istanbul cover node_modules/.bin/_mocha -- --recursive --require ts-node/register --timeout 50000 dist/test/unit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/telefonicablockchain/trustid.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/telefonicablockchain/trustid/issues"
},
"homepage": "https://github.com/telefonicablockchain/trustid/trustid-sdk#readme",
"dependencies": {
"@types/mongoose": "^5.7.14",
"@types/node": "^13.7.1",
"crypto-js": "^4.0.0",
"fabric-ca-client": "2.2.5",
"fabric-network": "v2.2.5",
"fs": "0.0.1-security",
"jose": "^1.22.1",
"mongoose": "^5.10.13",
"node-jose": "git+https://github.com/cisco/node-jose.git",
"optional": "^0.1.4",
"path": "^0.12.7",
"shamirs-secret-sharing": "1.0.1"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/crypto-js": "^3.1.46",
"@types/jwk-to-pem": "^2.0.0",
"@types/mocha": "^7.0.2",
"@types/node-jose": "^1.1.3",
"@types/sinon": "^9.0.0",
"sinon": "^9.0.2",
"chai": "^4.2.0",
"mocha": "^7.1.2",
"ts-node": "^8.10.1",
"typedoc": "^0.16.10",
"typescript": "^3.8.3",
"typescript-coverage-report": "^0.1.3"
},
"optionalDependencies": {}
}