-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.25 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
{
"name": "sharding",
"version": "1.0.0",
"description": "Sharding implemenation based on Phase 1 doc",
"main": "truffle.js",
"directories": {
"test": "test"
},
"scripts": {
"solium": "solium -d contracts/",
"coverage": "solidity-coverage",
"lint": "solium --dir contracts && eslint migrations/ test/",
"eslint": "eslint migrations/ test/",
"flattener": "truffle-flattener",
"test": "truffle test",
"truffle": "truffle"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JuliusBrain/sharding.git"
},
"author": "Adrian Hetman",
"license": "MIT",
"homepage": "https://github.com/JuliusBrain/sharding.git#readme",
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^2.0.2",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.11.0",
"solidity-coverage": "^0.5.11",
"solium": "^1.2.4",
"truffle-flattener": "^1.3.0"
},
"dependencies": {
"bluebird": "^3.5.1",
"ethereumjs-abi": "^0.6.5",
"graceful-fs": "^4.1.11",
"lodash": "^4.17.11",
"npm": "^6.9.0",
"openzeppelin-solidity": "^1.9.0",
"truffle": "5.0.20",
"truffle-hdwallet-provider": "^0.0.3"
}
}