-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
executable file
·57 lines (57 loc) · 1.76 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
{
"name": "tidbit",
"version": "0.1.0",
"license": "MIT",
"main": "lib/index.js",
"files": [
"build",
"contracts",
"test"
],
"repository": {
"type": "git",
"url": "https://github.com/levelkdev/tidbit.git"
},
"dependencies": {
"bn-chai": "^1.0.1",
"moment": "^2.22.0",
"openzeppelin-solidity": "^2.1.2",
"solc": "^0.4.24",
"truffle-blockchain-utils": "^0.0.3",
"truffle-hdwallet-provider": "^0.0.3",
"zos-lib": "2.1.2"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"cross-env": "^5.1.4",
"ganache-cli": "^6.1.6",
"lk-test-helpers": "^0.1.3",
"openzeppelin-test-helpers": "0.1.2",
"snazzy": "^7.1.1",
"solidity-coverage": "^0.5.5",
"solidity-docgen": "^0.1.0",
"standard": "^10.0.3",
"truffle": "^5.0.3",
"web3": "1.0.0-beta.35"
},
"scripts": {
"build": "node scripts/build.js",
"build-docs": "scripts/buildDocs.sh",
"cleanup": "rm -rf build/ && mkdir build && rm -rf lib/ && mkdir lib",
"compile": "npm run cleanup && truffle compile --all && npm run build",
"deploy": "npm run cleanup && truffle migrate --reset && npm run build",
"deploy-rinkeby": "npm run cleanup && truffle migrate --reset --network rinkeby && npm run build",
"test": "npm run build && scripts/test.sh",
"test:truffle": "truffle test",
"test:coverage": "npm run build && npm run solidity-coverage",
"ganache-cli": "scripts/runGanacheCLI.sh",
"lint": "standard --verbose | snazzy"
}
}