forked from Consensys/web3js-eea
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.6 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
72
73
74
75
76
77
78
79
80
81
82
{
"name": "web3-eea",
"version": "0.9.0",
"description": "EEA JSON-RPC API",
"main": "src/index.js",
"scripts": {
"test": "npm run test:unit && npm run test:integration && npm run test:onchain",
"test:unit": "tape test/unit/**/*.js",
"pretest:integration": "BESU_PRIVACY_ONCHAIN_GROUPS_ENABLED=false npm run network:up",
"test:integration": "tape test/integration/*.test.js",
"posttest:integration": "npm run network:down",
"cover": "npm run cover:unit && npm run cover:integration && npm run cover:onchain && npm run cover:report",
"cover:unit": "nyc --silent npm run test:unit",
"cover:integration": "nyc --silent --no-clean npm run test:integration",
"cover:onchain": "nyc --silent --no-clean npm run test:onchain",
"cover:report": "nyc report --reporter=lcov --reporter=text",
"pretest:onchain": "BESU_PRIVACY_ONCHAIN_GROUPS_ENABLED=true npm run network:up",
"test:onchain": "tape test/integration/onChainPrivacy/*.test.js",
"posttest:onchain": "npm run network:down",
"network:up": "node ./test/integration/support/after.js && node ./test/integration/support/before.js",
"network:down": "node ./test/integration/support/after.js",
"lint": "eslint .",
"generate:doc": "node_modules/.bin/jsdoc --configure jsdoc.json --verbose"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/PegaSysEng/web3js-eea.git"
},
"keywords": [
"web3",
"besu",
"eea",
"orion"
],
"author": "PegaSysEng <support@pegasys.tech>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/PegaSysEng/web3js-eea/issues"
},
"homepage": "https://github.com/PegaSysEng/web3js-eea#readme",
"dependencies": {
"async-promise-pool": "1.0.3",
"docdash": "^1.2.0",
"ethereumjs-tx": "1.3.7",
"ethereumjs-util": "6.1.0",
"lodash": "4.17.15",
"minimist": "^1.2.5",
"rlp": "2.2.4",
"web3": "1.2.6"
},
"devDependencies": {
"axios": "0.19.2",
"babel-eslint": "10.0.1",
"dotenv": "8.0.0",
"eslint": "5.16.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-config-prettier": "4.1.0",
"eslint-plugin-chai-expect": "2.0.1",
"eslint-plugin-import": "2.17.2",
"eslint-plugin-prettier": "3.0.1",
"eslint-plugin-promise": "4.1.1",
"husky": "1.3.1",
"jsdoc": "^3.6.4",
"lint-staged": "8.1.5",
"nyc": "15.0.0",
"prettier": "1.14.2",
"tape": "4.11.0",
"typedarray-to-buffer": "3.1.5",
"yaeti": "1.0.2"
}
}