-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
52 lines (52 loc) · 1.67 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
{
"name": "@ew-did-registry/did-registry",
"version": "0.9.0",
"publishConfig": {
"access": "public"
},
"description": "The core component of the EW DID Registry library",
"main": "./dist/index.js",
"browser": "./dist/index.esm/js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "../../node_modules/.bin/mocha -r ts-node/register test/**/*.test.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 --gasLimit=10000000 \"npm run test \"",
"compile": "webpack --config ../../webpack.config.js",
"lint": "../../node_modules/.bin/eslint src/**/*.ts",
"fix": "../../node_modules/.bin/eslint src/**/*.ts --fix"
},
"keywords": [
"Energy",
"EnergyWeb",
"EW",
"DID",
"Registry",
"DID Registry"
],
"author": {
"name": "EnergyWeb",
"url": "https://www.energyweb.org/"
},
"license": "GPL-3.0-or-later",
"dependencies": {
"@ew-did-registry/claims": "0.9.0",
"@ew-did-registry/did": "0.9.0",
"@ew-did-registry/did-document": "0.9.0",
"@ew-did-registry/did-ethr-resolver": "0.9.0",
"@ew-did-registry/did-ipfs-store": "0.9.0",
"@ew-did-registry/did-resolver-interface": "0.9.0",
"@ew-did-registry/did-store-interface": "0.9.0",
"@ew-did-registry/jwt": "0.9.0",
"@ew-did-registry/keys": "0.9.0",
"@ew-did-registry/proxyidentity": "0.9.0"
},
"devDependencies": {
"ganache-cli": "^6.12.2",
"node-polyfill-webpack-plugin": "^1.1.4",
"run-with-testrpc": "0.3.1",
"ts-loader": "^9.2.6",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2",
"webpack-merge": "^5.8.0"
}
}