-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
49 lines (49 loc) · 1.49 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
{
"name": "@ew-did-registry/did-document",
"version": "0.9.0",
"publishConfig": {
"access": "public"
},
"description": "The package provides the necessary functionality for the client to work with DID Documents",
"main": "./dist/index.js",
"browser": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "../../node_modules/.bin/mocha --timeout 10000 -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": "eslint src/**/*.ts",
"fix": "eslint src/**/*.ts --fix"
},
"keywords": [
"Energy",
"EnergyWeb",
"EW",
"Document",
"DID-Document",
"DID"
],
"author": {
"name": "EnergyWeb",
"url": "https://www.energyweb.org/"
},
"license": "GPL-3.0-or-later",
"dependencies": {
"@ew-did-registry/did": "0.9.0",
"@ew-did-registry/did-ethr-resolver": "0.9.0",
"@ew-did-registry/did-resolver-interface": "0.9.0",
"@ew-did-registry/keys": "0.9.0",
"ethers": "^5.7.2"
},
"devDependencies": {
"eslint": "^8.6.0",
"ganache-cli": "^6.12.2",
"mocha": "7.2.0",
"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"
}
}