-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
41 lines (41 loc) · 1.17 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
{
"name": "smart-contracts-skeleton",
"version": "1.0.1",
"description": "Skeleton for building smart contracts for Ethereum network.",
"repository": "https://github.com/Shimmi/smart-contracts-skeleton",
"directories": {
"test": "test"
},
"scripts": {
"test": "npx truffle test",
"compile": "npx truffle compile",
"coverage": "npx solidity-coverage",
"lint": "npx solium -d contracts/",
"migrate": "npx truffle migrate"
},
"keywords": [
"ethereum",
"smart",
"contracts",
"solidity",
"truffle",
"zeppelin",
"blockchain"
],
"author": "Jiri Simecek <[email protected]>",
"license": "MIT",
"dependencies": {
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"mocha": "^5.0.0",
"solidity-coverage": "^0.4.8",
"solium": "^1.1.3",
"truffle": "^4.0.5",
"zeppelin-solidity": "^1.5.0"
}
}