-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.71 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
56
57
58
59
60
61
62
{
"name": "wavestream-presale",
"version": "1.0.0",
"private": true,
"description": "",
"scripts": {
"test": "truffle test",
"coverage": "solidity-coverage",
"lint": "solium -d contracts",
"fix-sol": "solium -d contracts --fix || true",
"fix-js": "prettier --config .prettierrc.yml --write --list-different 'test/**/*.js' || true",
"fix": "npm run fix-sol && npm run fix-js",
"flatten": "sol-merger './contracts/*.sol' ./flat",
"precommit": "lint-staged"
},
"lint-staged": {
"ignore": [
"contracts/Migrations.sol"
],
"linters": {
"*.sol": [
"solium -f"
],
"*.js": [
"prettier --config .prettierrc.yml --list-different"
]
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/ujenjt/wavestream-presale.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ujenjt/wavestream-presale/issues"
},
"homepage": "https://github.com/ujenjt/wavestream-presale#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-syntax-object-rest-spread": "^6.13.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"bignumber.js": "^6.0.0",
"chai": "^4.1.2",
"husky": "^0.14.3",
"lint-staged": "^7.0.1",
"prettier": "^1.11.1",
"sol-merger": "^0.1.2",
"solidity-coverage": "^0.4.15",
"solium": "^1.1.6",
"solium-plugin-zeppelin": "OpenZeppelin/solium-plugin-zeppelin",
"traverse": "^0.6.6",
"truffle": "^4.1.5",
"web3": "^0.20.6"
},
"dependencies": {
"zeppelin-solidity": "1.8.0"
}
}