-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.9 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.9 KB
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
63
64
65
66
67
68
69
70
71
72
{
"name": "contracts-starter-project",
"version": "0.1.0",
"license": "MIT",
"main": "lib/index.js",
"files": [
"build",
"lib",
"src"
],
"dependencies": {
"bluebird": "^3.5.1",
"ethjs-abi": "^0.2.1",
"lodash": "^4.17.5",
"moment": "^2.18.1",
"truffle-blockchain-utils": "0.0.4",
"truffle-hdwallet-provider": "0.0.3",
"zeppelin-solidity": "^1.8.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"bluebird": "^3.5.1",
"coveralls": "^3.0.0",
"cross-env": "^5.0.4",
"ethereumjs-wallet": "0.6.0",
"jest-cli": "^20.0.4",
"lk-test-helpers": "^0.1.3",
"snazzy": "^7.0.0",
"solidity-coverage": "^0.5.0",
"standard": "^10.0.3",
"truffle-artifactor": "^3.0.4",
"truffle-contract": "^3.0.4",
"truffle-ext": "^0.1.8",
"web3": "0.20.4"
},
"scripts": {
"build": "node scripts/build.js",
"cleanup": "rm -rf build/ && mkdir build && rm -rf lib/ && mkdir lib",
"compile": "yarn cleanup && truffle compile --all && yarn build",
"deploy": "yarn cleanup && truffle migrate --reset && yarn build",
"deploy-rinkeby": "yarn cleanup && truffle migrate --reset --network rinkeby && yarn build",
"test": "yarn build && scripts/test.sh",
"testrpc": "scripts/runTestrpc.sh",
"run-jest": "jest",
"lint": "standard --fix --verbose | snazzy",
"coverage": "solidity-coverage"
},
"jest": {
"moduleDirectories": [
"node_modules",
"src",
"test"
],
"setupTestFrameworkScriptFile": "<rootDir>/test/helpers/setup.js"
},
"standard": {
"globals": [
"web3",
"artifacts",
"assert",
"contract",
"it",
"describe",
"beforeEach",
"afterEach"
]
}
}