-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
71 lines (71 loc) · 2.08 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
71
{
"name": "ethr-status-registry",
"version": "2.1.3",
"description": "Verifiable Credential status resolver using an ethereum contract as registry",
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"test": "jest",
"test:ci": "jest --coverage && codecov",
"dev": "tsc --watch",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"release": "semantic-release --debug"
},
"repository": "[email protected]:uport-project/ethr-status-registry.git",
"keywords": [
"Verifiable Credential",
"W3C",
"ethereum",
"registry",
"status check",
"revocation",
"jwt"
],
"author": "Mircea Nistor <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/uport-project/ethr-status-registry/issues"
},
"homepage": "https://github.com/uport-project/ethr-status-registry#readme",
"devDependencies": {
"@ethersproject/bytes": "5.4.0",
"@ethersproject/units": "5.4.0",
"@semantic-release/changelog": "6.0.0",
"@semantic-release/git": "10.0.0",
"@types/ethjs-signer": "0.1.0",
"@types/jest": "27.0.2",
"@types/node": "14.17.27",
"codecov": "3.8.3",
"ethjs-signer": "0.1.1",
"ganache-cli": "6.12.2",
"jest": "27.2.5",
"jest-extended": "0.11.5",
"prettier": "2.4.1",
"semantic-release": "18.0.0",
"ts-jest": "27.0.7",
"tslint": "6.1.3",
"tslint-config-prettier": "1.18.0",
"typescript": "4.4.4"
},
"files": [
"lib/**/*",
"src/**/*"
],
"dependencies": {
"@ethersproject/abstract-signer": "^5.0.11",
"@ethersproject/bignumber": "^5.0.13",
"@ethersproject/contracts": "^5.0.9",
"@ethersproject/keccak256": "^5.0.7",
"@ethersproject/properties": "^5.0.7",
"@ethersproject/providers": "^5.0.19",
"@ethersproject/strings": "^5.0.8",
"@ethersproject/transactions": "^5.0.9",
"credential-status": "^1.2.2",
"did-jwt": "^4.8.1",
"did-resolver": "^2.1.2",
"revocation-registry": "^0.1.0"
}
}