-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·43 lines (43 loc) · 1.09 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
{
"name": "pareto-network-token-ico",
"version": "1.0.2",
"description": "A set of Ethereum smart contracts for Pareto Network CrowdSale",
"main": "truffle.js",
"directories": {
"test": "test"
},
"scripts": {
"tests": "sh run-tests.sh",
"test": "sh run-tests.sh",
"compile": "./node_modules/.bin/truffle compile",
"lint": "sh lint.sh",
"coverage": "sh coverage.sh",
"testrpc": "./node_modules/.bin/testrpc"
},
"keywords": [
"solidity",
"ethereum",
"smart contracts",
"ICO"
],
"author": "Kirill Beresnev <[email protected]>",
"license": "ICS",
"dependencies": {
"zeppelin-solidity": "1.3.0"
},
"devDependencies": {
"chai": "^4.0.2",
"chai-as-promised": "^7.0.0",
"chai-bignumber": "^2.0.0",
"truffle": "4.0.1",
"ethereumjs-testrpc": "6.0.3",
"solcheck": "^0.1.3",
"solidity-coverage": "^0.2.5",
"solium": "^1.0.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-2": "^6.18.0",
"babel-preset-stage-3": "^6.17.0",
"babel-register": "^6.23.0"
}
}