-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
86 lines (86 loc) · 3.11 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
{
"name": "metronome",
"version": "1.0.0",
"description": "Metronome Token",
"directories": {
"test": "test"
},
"scripts": {
"test": "./test-all",
"postinstall": "patch-package",
"compile": "node ./js/eth/index.js compile",
"deploy": "node ./js/eth/index.js deploy",
"configure": "node ./js/eth/index.js configure",
"migrate": "truffle migrate",
"migrate:clean": "truffle migrate --reset",
"solhint": "solhint contracts/*.sol",
"eslint": "eslint test/*.js timed-tests/*.js",
"ganache": "kill -9 $(lsof -ti :8545) & (ganache-cli -p 8545 -e 1000 -a 15 > /dev/null & truffle test) && kill -9 $(lsof -ti :8545)",
"ganache:single": "kill -9 $(lsof -ti :8545) & (ganache-cli -p 8545 -e 1000 -a 15 > /dev/null & truffle test $TESTFILE) && kill -9 $(lsof -ti :8545)",
"ganache:subs": "kill -9 $(lsof -ti :8545) & (ganache-cli -p 8545 -e 1000 -a 15 > /dev/null & truffle test timed-tests/subscriptions.js) && kill -9 $(lsof -ti :8545)",
"ganache:ac": "kill -9 $(lsof -ti :8545) & (ganache-cli -p 8545 -e 1000 -a 100 > /dev/null & truffle test timed-tests/ac.js) && kill -9 $(lsof -ti :8545)",
"ganache:auctions": "kill -9 $(lsof -ti :8545) & (ganache-cli -p 8545 -e 1000 -a 15 > /dev/null & truffle test timed-tests/auctions.js) && kill -9 $(lsof -ti :8545)",
"ganache:proceeds": "kill -9 $(lsof -ti :8545) & (ganache-cli -p 8545 -e 1000 -a 15 > /dev/null & truffle test timed-tests/proceeds.js) && kill -9 $(lsof -ti :8545)",
"ganache:tokenLocker": "kill -9 $(lsof -ti :8545) & (ganache-cli -p 8545 -e 1000 -a 15 > /dev/null & truffle test timed-tests/tokenLocker.js) && kill -9 $(lsof -ti :8545)",
"precommit-msg": "echo 'Pre-commit checks...' && exit 0",
"testExport": "./node_modules/mocha/bin/mocha --timeout 10000"
},
"pre-commit": [
"eslint",
"solhint",
"ganache:auctions",
"ganache",
"ganache:subs",
"ganache:ac",
"ganache:proceeds",
"ganache:tokenLocker"
],
"repository": {
"type": "git",
"url": "git+https://github.com/MetronomeToken/metronome.git"
},
"keywords": [
"eth",
"token",
"ethereum",
"metronome"
],
"bugs": {
"url": "https://github.com/acmetoken/metronome/issues"
},
"homepage": "https://github.com/acmetoken/metronome#readme",
"devDependencies": {
"eslint": "^4.18.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"pre-commit": "^1.2.2",
"solhint": "^1.2.1",
"truffle": "4.1.5",
"truffle-hdwallet-provider": "^1.0.4",
"minimist": "^1.2.0",
"patch-package": "^5.1.1"
},
"engines": {
"node": "8",
"npm": "5"
},
"dependencies": {
"bignumber.js": "^6.0.0",
"chai": "^4.1.2",
"config": "^3.1.0",
"dotenv": "^7.0.0",
"ethereumjs-tx": "^1.3.7",
"ethers": "^4.0.7",
"ethjs-abi": "^0.2.1",
"fs": "0.0.1-security",
"fs-extra": "^8.0.1",
"lodash": "^4.17.5",
"mocha": "5.1.0",
"shelljs": "^0.8.3",
"web3": "1.0.0-beta.37",
"websocket-reconnector": "^1.1.1"
}
}