-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.19 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
{
"name": "@enabledao/enable-router-contracts",
"version": "0.0.1",
"description": "Router contracts to distribute funds",
"main": "truffle-config.js",
"scripts": {
"compile": "truffle compile --all",
"clear-test-contracts": "rm -rf .openzeppelin/dev*",
"deploy": "sh scripts/deploy/oz.deploy.sh",
"initialize": "truffle exec scripts/deploy/oz.initialize.js",
"oz:create": "oz create",
"oz:publish": "oz publish",
"oz:push": "oz push",
"oz:verify": "oz verify",
"prettier:solidity": "./node_modules/.bin/prettier --write contracts/**/*.sol",
"postinstall": "npm run version",
"solhint": "./node_modules/.bin/solhint contracts/**/*.sol",
"solium": "./node_modules/.bin/solium -d contracts/",
"solium:fix": "./node_modules/.bin/solium -d contracts/ --fix",
"test": "truffle test --network development",
"version": "node ./scripts/version/on-version.js && git add ."
},
"husky": {
"hooks": {
"pre-commit": "npm run prettier:solidity"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/enabledao/enable-router-contracts.git"
},
"keywords": [
"zeppelinos",
"openzeppelin",
"truffle",
"react"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/enabledao/enable-router-contracts/issues"
},
"homepage": "https://github.com/enabledao/enable#readme",
"dependencies": {
"@0x/sol-trace": "^3.0.3",
"@babel/polyfill": "^7.7.0",
"@babel/register": "^7.7.7",
"@openzeppelin/contracts-ethereum-package": "2.4.0",
"@truffle/hdwallet-provider": "^1.0.30",
"dotenv": "^8.2.0",
"ethereumjs-wallet": "^0.6.3",
"minimist": "^1.2.0",
"zos-lib": "^2.4.2"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@openzeppelin/cli": "^2.6.0",
"chai": "^4.2.0",
"eth-gas-reporter": "^0.2.14",
"ethlint": "^1.2.5",
"husky": "^4.0.4",
"openzeppelin-test-helpers": "^0.5.1",
"prettier": "^1.19.1",
"prettier-plugin-solidity": "^1.0.0-alpha.27",
"solhint": "^2.3.0",
"solhint-plugin-prettier": "0.0.3",
"solidity-coverage": "^0.7.1",
"truffle": "^5.1.7",
"web3": "^1.2.4"
}
}