-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
55 lines (55 loc) · 1.89 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
{
"name": "escape-truffle",
"version": "0.0.1",
"description": "Ethereum Package Registry (Truffle)",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"ci": "./scripts/ci.sh",
"compile": "./node_modules/.bin/truffle compile",
"coverage": "./node_modules/.bin/solidity-coverage",
"deploy:ganache": "PRODUCTION=true NETWORK=ganache ./scripts/deploy.sh",
"deploy:rinkeby": "PRODUCTION=true NETWORK=rinkeby ./scripts/deploy.sh",
"deploy:ropsten": "PRODUCTION=true NETWORK=ropsten ./scripts/deploy.sh",
"deploy:kovan": "PRODUCTION=true NETWORK=kovan ./scripts/deploy.sh",
"docs:gas": "NETWORK=ganache GAS_DOCS=true ./scripts/test.sh",
"ens:register": "NETWORK=ropsten ./node_modules/.bin/truffle exec --network ropsten config/ens.js",
"ganache": "./node_modules/.bin/ganache-cli --noVMErrorsOnRPCResponse --port 8547",
"lint": "./node_modules/.bin/solium -d contracts/",
"test": "NETWORK=ganache ./scripts/test.sh",
"test:geth": "NETWORK=geth ./scripts/test.sh",
"test:gas": "NETWORK=ganache GAS_REPORTER=true ./scripts/test.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ethpm/escape-truffle.git"
},
"keywords": [
"ethpm",
"truffle"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/ethpm/escape-truffle/issues"
},
"homepage": "https://github.com/ethpm/escape-truffle#readme",
"devDependencies": {
"coveralls": "^3.0.0",
"eth-gas-reporter": "^0.1.7",
"ganache-cli": "6.1.6",
"shelljs": "^0.8.1",
"solidity-coverage": "^0.5.0",
"solium": "^1.1.7",
"truffle": "5.0.0-next.9"
},
"dependencies": {
"colors": "^1.3.1",
"eth-ens-namehash": "^2.0.8",
"ora": "^3.0.0",
"truffle-hdwallet-provider": "git+https://github.com/trufflesuite/truffle-hdwallet-provider.git#web3-one",
"web3": "^1.0.0-beta.35"
}
}