-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.36 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
{
"name": "smart-contracts",
"version": "1.0.0",
"description": "",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "scripts/test.sh",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:sol": "solium -d .",
"lint:sol:fix": "solium -d . --fix",
"lint:all": "npm run lint && npm run lint:sol",
"lint:all:fix": "npm run lint:fix && npm run lint:sol:fix",
"console": "truffle console",
"coverage": "scripts/coverage.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MUSTplatform/smart-contracts.git"
},
"author": "",
"contributors": [
"Aler Denisov <[email protected]>"
],
"bugs": {
"url": "https://github.com/MUSTplatform/smart-contracts/issues"
},
"homepage": "https://github.com/MUSTplatform/smart-contracts#readme",
"dependencies": {
"truffle": "4.1.11",
"zeppelin-solidity": "1.10.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"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",
"coveralls": "3.0.1",
"dotenv": "6.0.0",
"ganache-cli": "6.1.3",
"sol-merger": "0.1.2",
"solidity-coverage": "0.5.4",
"solium": "1.1.7",
"truffle-hdwallet-provider": "0.0.5"
}
}