-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
36 lines (36 loc) · 965 Bytes
/
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
{
"name": "veil-contracts",
"version": "0.1.6",
"description": "Smart contracts for Veil",
"main": "index.js",
"scripts": {
"test": "truffle test",
"lint": "solium --dir ./contracts",
"ganache": "sh ganache.sh",
"deploy:kovan": "truffle migrate --network kovan",
"deploy:mainnet": "truffle migrate --network mainnet"
},
"repository": {
"type": "git",
"url": "git+https://github.com/veilco/veil-contracts.git"
},
"author": "Veil",
"devDependencies": {
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^2.0.2",
"dotenv": "^6.0.0",
"eth-gas-reporter": "^0.1.12",
"ethereumjs-util": "^5.2.0",
"ganache-cli": "^6.1.8",
"openzeppelin-solidity": "^2.0.0",
"solium": "^1.1.8",
"truffle-hdwallet-provider": "^0.0.6"
},
"dependencies": {
"solc": "0.4.24"
}
}