generated from energywebfoundation/EWFRepositoryTemplate
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
71 lines (71 loc) · 2.53 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": "@energyweb/vc-verification",
"version": "2.2.0",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"description": "This package provides code to verify verifiable credential, including governance verification",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/src/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "npm run compile:ts && copyfiles build/contracts/**/*.json -u 1 dist && copyfiles \"ethers/**/*.d.ts\" dist && copyfiles \"contracts/**/*\" -u 1 dist/contracts",
"build:typechain": "typechain --target ethers-v5 --out-dir ethers './build/contracts/EthereumDIDRegistry.json'",
"compile": "npm run compile:contracts && npm run build:typechain && npm run build",
"compile:contracts": "truffle compile",
"compile:ts": "bili",
"test": "../../node_modules/.bin/mocha --timeout 1000 -r ts-node/register test/**/*-tests.ts",
"test-ganache": "mocha -r ts-node/register test/**/*-tests.ts",
"test-rpc": "run-with-testrpc -m \"candy maple cake sugar pudding cream honey rich smooth crumble sweet treat\" --port 8544 --accounts 20 --networkId=9 --chainId 73799 --gasLimit=10000000 \"npm run test-ganache\" "
},
"keywords": [
"Energy",
"EnergyWeb",
"EW",
"DID",
"Roles",
"Credential"
],
"author": {
"name": "EnergyWeb",
"url": "https://www.energyweb.org/"
},
"license": "GPL-3.0-or-later",
"dependencies": {
"@energyweb/credential-governance": "2.2.0",
"@energyweb/onchain-claims": "2.2.0",
"@ew-did-registry/claims": "^0.8.1-alpha.1122.0",
"@ew-did-registry/credentials-interface": "^0.8.1-alpha.1122.0",
"@ew-did-registry/did-ethr-resolver": "^0.8.1-alpha.1122.0",
"@ew-did-registry/did-ipfs-store": "0.7.1-alpha.816.0",
"@ew-did-registry/did-store-interface": "^0.8.1-alpha.1122.0",
"@ew-did-registry/revocation": "^0.8.1-alpha.1122.0",
"ethers": "^5.7.2",
"lodash": "^4.17.21"
},
"devDependencies": {
"@typechain/ethers-v5": "^10.1.0",
"@types/jsonwebtoken": "^9.0.1",
"chai": "4.3.7",
"chai-arrays": "2.2.0",
"chai-as-promised": "7.1.1",
"didkit-wasm-node": "^0.1.6",
"eth-ens-namehash": "^2.0.8",
"ganache-cli": "^6.12.2",
"ipfs": "^0.58.3",
"ipfs-http-client": "^43.0.0",
"ipfsd-ctl": "3.0.0",
"js-sha3": "^0.8.0",
"jsonwebtoken": "^9.0.0",
"nock": "^13.2.7",
"run-with-testrpc": "0.3.1",
"truffle": "5.4.29",
"ts-node": "^10.9.1",
"typechain": "^8.1.0",
"typescript": "^4.9.3"
}
}