forked from ethereum-alarm-clock/ethereum-alarm-clock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 2.23 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
{
"name": "ethereum-alarm-clock",
"version": "1.0.0",
"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 test/block-scheduling-tests/* && truffle test test/request-factory-tests/* && truffle test test/request-tracker-tests/* && truffle test test/timestamp-scheduling-tests/timestampClaiming.js && truffle test test/timestamp-scheduling-tests/timestampExecution.js && truffle test test/timestamp-scheduling-tests/timestampReserved.js && truffle test test/timestamp-scheduling-tests/timestampScheduler.js && truffle test test/transaction-request/* && truffle test test/others/* && truffle test test/integration/*",
"coverage": "./node_modules/.bin/solidity-coverage"
},
"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": {
"@parity/api": "^2.1.14",
"@types/chalk": "^2.2.0",
"async": "^2.6.0",
"chalk": "^2.3.0",
"chalk-animation": "^1.3.0",
"clear": "^0.0.1",
"commander": "^2.12.2",
"debug": "^3.0.1",
"ethereumjs-lib": "^3.0.0",
"ethereumjs-tx": "^1.3.3",
"ethereumjs-util": "^5.1.2",
"keccak": "^1.3.0",
"lodash": "^4.17.4",
"memory-cache": "^0.2.0",
"nconf": "^0.8.4",
"ora": "^1.3.0",
"readline-sync": "^1.4.7",
"solc": "^0.4.19",
"truffle-contract": "^2.0.5",
"web3": "^1.0.0-beta.18",
"web3-core-method": "^1.0.0-beta.27",
"websocket": "^1.0.25"
},
"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",
"mocha": "^3.5.3",
"should": "^13.1.0",
"solidity-coverage": "^0.3.5",
"truffle": "^4.0.1"
}
}