forked from ethereum-alarm-clock/ethereum-alarm-clock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.52 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
{
"name": "ethereum-alarm-clock",
"version": "0.9.3",
"description": "Service to schedule Ethereum transactions that will be executed in the future.",
"main": "index.js",
"directories": {
"doc": "docs",
"test": "tests"
},
"scripts": {
"test": "truffle test",
"coverage": "./node_modules/.bin/solidity-coverage",
"lint": "./node_modules/eslint/bin/eslint.js .",
"solium": "./node_modules/solium/bin/solium.js -d contracts --fix",
"clean": "truffle networks --clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chronologic/ethereum-alarm-clock.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/chronologic/ethereum-alarm-clock/issues"
},
"homepage": "https://github.com/chronologic/ethereum-alarm-clock#readme",
"dependencies": {
"@optionality.io/clone-factory": "^0.1.2",
"ethereumjs-util": "^5.1.2",
"nconf": "^0.8.4",
"solc": "^0.4.21",
"solium": "^1.1.6",
"web3": "^1.0.0-beta.18"
},
"devDependencies": {
"@digix/tempo": "^0.2.0",
"bignumber.js": "^4.1.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.0",
"eslint": "^4.16.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"solidity-coverage": "^0.4.15"
},
"pre-commit": [
"clean",
"lint",
"solium"
]
}