-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.25 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
{
"name": "crypto-arbitrage-bot",
"version": "0.0.0",
"description": "Makes money",
"main": "src/index.js",
"scripts": {
"start": "node -r babel-register src/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/razvanz/crypto-arbitrage-bot.git"
},
"keywords": [
"money"
],
"author": "Razvan Laurus <[email protected]>",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/razvanz/crypto-arbitrage-bot/issues"
},
"homepage": "https://github.com/razvanz/crypto-arbitrage-bot#readme",
"dependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-register": "^6.26.0",
"debug": "^3.1.0",
"kraken-api": "^1.0.0",
"promise-retry": "^1.1.1",
"yargs": "^10.0.3"
},
"devDependencies": {
"babel-eslint": "^8.0.3",
"eslint": "^4.12.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1"
}
}