-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
45 lines (45 loc) · 1.05 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
{
"name": "@dragonereum/contracts",
"description": "Dragonereum smart contracts",
"version": "1.1.2",
"license": "WTFPL",
"repository": {
"type": "git",
"url": "git+https://github.com/dragonereum/dragonereum-contracts.git"
},
"bugs": {
"url": "https://github.com/dragonereum/dragonereum-contracts/issues"
},
"devDependencies": {
"graphlib": "^2.1.7",
"dotenv": "^8.0.0",
"husky": "^2.4.1",
"lint-staged": "^8.2.1",
"solium": "^1.2.4",
"truffle": "^5.0.24",
"truffle-hdwallet-provider": "^1.0.11"
},
"dependencies": {
"bn-chai": "^1.0.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"web3-provider-engine": "^14.1.0",
"web3": "1.0.0-beta.37"
},
"scripts": {
"lint": "solium -d contracts/",
"test": "truffle test",
"develop": "truffle develop",
"build": "node scripts/build --clear --input build_contracts --output dist"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"contracts/**/*.sol": [
"solium -f"
]
}
}