-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
56 lines (56 loc) · 1.29 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
{
"name": "pump-it-up",
"version": "1.0.0",
"description": "",
"author": "Marc Höffl <[email protected]>",
"license": "ISC",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test; jest",
"start": "node index.js",
"fetch-coins": "node scripts/download-currencies.js",
"log-telegram": "node scripts/log-telegram.js",
"lint": "eslint ."
},
"pre-commit": ["lint", "test"],
"dependencies": {
"@google-cloud/vision": "^0.14.0",
"apjson": "^1.0.6",
"async-promises": "^0.2.1",
"blessed": "^0.1.81",
"bluebird": "^3.5.1",
"ccxt": "1.10.738",
"coinmarketcap-api": "^1.0.0",
"date-fns": "^1.29.0",
"dotenv": "^4.0.0",
"jsonfile": "^4.0.0",
"kucoin-api": "0.0.3",
"lodash": "^4.17.4",
"nanobus": "^4.3.1",
"node-fetch": "^2.0.0-alpha.9",
"osx-notifier": "^0.2.2",
"prompt-async": "^0.9.9",
"tg-cli-node": "KeKs0r/tg-cli-node",
"twitter": "^1.7.1"
},
"devDependencies": {
"eslint": "^4.14.0",
"jest": "^22.0.3",
"nock": "^9.1.5",
"pre-commit": "^1.2.2"
},
"eslintConfig": {
"extends": "eslint:recommended",
"env": {
"node": true,
"es6": true,
"jest": true
},
"parserOptions": {
"ecmaVersion": 8
}
},
"jest": {
"testEnvironment": "node"
}
}