-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
51 lines (51 loc) · 1.36 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
{
"name": "@centrifuge/ethereum-contracts",
"version": "1.0.2",
"description": "Centrifuge OS (https://github.com/centrifuge/centrifuge-ethereum-contracts)",
"publishConfig": {
"access": "public"
},
"files": [
"build",
"contracts",
"zos.json",
"zos.*.json"
],
"homepage": "https://github.com/centrifuge/centrifuge-ethereum-contracts#readme",
"scripts": {
"clean": "rm -rf build && rm -rf zos.dev*.json",
"compile": "npm run clean && truffle compile",
"lint:sol:fix": "solium -d contracts/ --fix",
"test": "npm run compile && NODE_ENV=test truffle test",
"start-ganache": "ganache-cli --networkId 99999 -l 8000000 -p 8545 -m \"tumble gas embody bright agree pony smoke laptop index sight shallow hungry\"",
"migrate": "truffle migrate --compile-all "
},
"nodemonConfig": {
"ignore": [
"docs/*"
],
"delay": "500"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint:sol:fix"
}
},
"dependencies": {
"openzeppelin-eth": "2.1.3"
},
"devDependencies": {
"ethereumjs-util": "6.1.0",
"ethereumjs-wallet": "0.6.3",
"fs-extra": "7.0.1",
"ganache-cli": "6.4.4",
"husky": "2.4.1",
"semver": "6.0.0",
"solium": "1.2.4",
"truffle": "5.0.22",
"truffle-hdwallet-provider": "1.0.10",
"yargs": "13.2.2",
"zos": "2.4.0",
"zos-lib": "2.4.0"
}
}