-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
65 lines (65 loc) · 1.65 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
{
"name": "@ethereum-alarm-clock/cli",
"version": "4.2.1",
"description": "Command-line tool written in JavaScript to interact with the Ethereum Alarm Clock",
"main": "index.js",
"scripts": {
"cleanup": "node tools/cleanup.js",
"lint": "./node_modules/.bin/eslint src/**/*",
"lint:fix": "./node_modules/.bin/eslint src/**/* --fix",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ethereum-alarm-clock/eac.js-cli.git"
},
"preferGlobal": true,
"directories": {
"bin": "./bin"
},
"bin": {
"eac": "./bin/eac"
},
"keywords": [
"ethereum",
"smart-contracts",
"ethereum-alarm-clock"
],
"author": "lsaether",
"license": "MIT",
"bugs": {
"url": "https://github.com/ethereum-alarm-clock/eac.js-cli/issues"
},
"homepage": "https://github.com/ethereum-alarm-clock/eac.js-cli#readme",
"dependencies": {
"@ethereum-alarm-clock/lib": "0.3.4",
"@ethereum-alarm-clock/timenode-core": "7.0.0",
"bignumber.js": "8.0.2",
"bluebird": "3.5.3",
"clear": "0.1.0",
"cli-table2": "0.2.0",
"commander": "2.19.0",
"console.table": "0.10.0",
"dotenv": "6.2.0",
"ethereumjs-util": "6.1.0",
"keen-tracking": "4.0.7",
"lokijs": "1.5.6",
"moment": "2.23.0",
"ora": "3.1.0",
"readline-sync": "1.4.9",
"web3": "1.0.0-beta.37",
"web3-providers-ws": "1.0.0-beta.37",
"websocket": "1.0.28"
},
"engines": {
"node": ">=8"
},
"devDependencies": {
"chai": "4.2.0",
"eslint": "5.6.1",
"eslint-config-airbnb-base": "13.1.0",
"eslint-plugin-import": "2.14.0",
"glob": "7.1.3",
"mocha": "5.2.0"
}
}