forked from ethereum-alarm-clock/ethereum-alarm-clock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.04 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
{
"name": "@ethereum-alarm-clock/contracts",
"version": "1.0.0-rc.2",
"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 .",
"lint-fix": "./node_modules/eslint/bin/eslint.js . --fix",
"solium": "./node_modules/solium/bin/solium.js -d contracts --fix",
"clean": "truffle networks --clean",
"migrate-reset": "truffle migrate --reset"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chronologic/ethereum-alarm-clock.git"
},
"author": "Piper Merriam",
"contributors": [
"Lsaether",
"Piotr Kosinski",
"Daniel Kmak",
"Joseph Bagaric",
"Adibas03"
],
"license": "MIT",
"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.6",
"nconf": "0.8.5",
"openzeppelin-solidity": "1.12.0",
"truffle-hdwallet-provider": "0.0.6",
"web3": "1.0.0-beta.35"
},
"devDependencies": {
"@digix/tempo": "0.2.0",
"bignumber.js": "4.1.0",
"bn.js": "^4.11.8",
"chai": "4.1.2",
"chai-as-promised": "7.1.1",
"coveralls": "3.0.2",
"crypto-js": "^3.1.9-1",
"eslint": "5.2.0",
"eslint-config-airbnb-base": "13.0.0",
"eslint-plugin-import": "2.13.0",
"ethereumjs-abi": "^0.6.5",
"ethereumjs-util": "5.2.0",
"solc": "0.4.25",
"solium": "1.1.8",
"solidity-coverage": "0.5.11",
"truffle": "^4.1.13",
"websocket": "1.0.26"
},
"pre-commit": [
"clean",
"lint",
"solium"
]
}