-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.25 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
{
"name": "@kaytrust/verifiable-credentials",
"version": "0.0.4",
"scripts": {
"ts": "tsc -w",
"doc": "typedoc --readme none --out doc src --module commonjs --target ES5 --tsconfig src/tsconfig.json --name 'Kaytrust Ethereum'",
"postinstall": "rm -rf lib && tsc -p src",
"test": "jest --watchAll -i",
"changelog": "standard-version"
},
"main": "index.js",
"author": "Jerson Miranda",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/KayTrust/verifiable-credentials.git"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@types/node": "^14.11.8",
"babel-jest": "^26.3.0",
"babel-loader": "^8.1.0",
"jest": "^26.4.2",
"node-fetch": "^2.6.1",
"ts-jest": "^26.4.1",
"ts-loader": "^8.0.5",
"ts-node": "^9.0.0",
"typedoc": "^0.19.2",
"typescript": "^4.0.3"
},
"dependencies": {
"@nullbeam/mnid": "^0.1.3",
"abi-decoder": "^2.3.0",
"crypto-js": "^4.0.0",
"ecdsa-sig-formatter": "^1.0.11",
"elliptic": "^6.5.3",
"eth-lib": "^0.1.29",
"ethers": "^5.7.2",
"mnid": "^0.1.3",
"moment": "^2.29.4",
"standard-version": "^9.5.0",
"web3": "^1.3.0"
}
}