-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
92 lines (92 loc) · 2.48 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "ricopoc",
"version": "0.0.1",
"description": "",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"compile": "./node_modules/.bin/truffle compile --all",
"deploy-test": "scripts/deploy-test.sh",
"deploy-live": "scripts/deploy-live.sh",
"coverage": "scripts/run_coverage.sh",
"test": "npm run test-fixed && npm run test-solc && npm run test-random-standalone",
"test-solc": "scripts/run_solc.sh all refresh",
"test-random-standalone": "scripts/run_standalone_random.sh all refresh",
"test-random": "scripts/run_random.sh all refresh",
"test-validator": "scripts/run_js.sh all refresh js",
"test-fixed": "scripts/run_fixed.sh all refresh",
"testToHtml": "scripts/testOutputToHtml.sh",
"start-all-rpcs": "scripts/rpcs/start_all.sh",
"stop-all-rpcs": "scripts/rpcs/stop_all.sh",
"merge-contracts": "sol-merger './contracts/*.sol' ./contracts-merged"
},
"preinstall": "rm -rf node_modules/*/.git/",
"bin": {
"rpcs": "./scripts/rpc.sh"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"include": "src",
"exclude": [
"**/*.d.ts"
],
"reporter": [
"html",
"text"
],
"all": true
},
"author": "Micky Socaci <micky@nowlive.ro>",
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"dependencies": {
"bignumber.js": "^9.0.0",
"chai": "^4.2.0",
"chai-bn": "^0.2.1",
"cli-table": "^0.3.1",
"dateformat": "^3.0.3",
"ethereumjs-abi": "^0.6.7",
"ethereumjs-util": "^6.1.0",
"ganache-cli": "git://github.com/mickys/ganache-cli.git#8e64c2e8f782d8c7e5f855d819001e74bdf48732",
"lodash": "^4.17.15",
"openzeppelin-test-helpers": "^0.4.0",
"sol-merger": "^1.1.1",
"solc": "0.5.10",
"solidity-coverage": "^0.6.4",
"truffle": "^5.0.26",
"truffle-hdwallet-provider": "^1.0.14",
"ts-mocha": "^6.0.0",
"web3": "1.0.0-beta.37",
"websocket": "git://github.com/frozeman/WebSocket-Node.git#6c72925e3f8aaaea8dc8450f97627e85263999f2"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.7",
"@types/node": "^12.6.3",
"eth-lightwallet": "^4.0.0",
"istanbul": "^0.4.5",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"typescript": "^3.5.3"
},
"engines": {
"node": ">=8.9.4"
},
"standard": {
"env": "mocha",
"globals": [
"describe",
"it"
]
}
}