-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.27 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": "kraken-grid",
"version": "1.2.14",
"description": "Bot repeatedly buys & sells on kraken from a conditional close order.",
"main": "init.js",
"bin": "./init.js",
"scripts": {
"test": "ava"
},
"ava": {
"files": [
"test/**/*",
"!test/exclude-files-in-this-directory",
"!**/exclude-files-with-this-name.*"
],
"failFast": true,
"failWithoutAssertions": false,
"environmentVariables": {
"MY_ENVIRONMENT_VARIABLE": "some value"
},
"verbose": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/dscotese/kraken-grid.git"
},
"keywords": [
"kraken",
"bot",
"grid",
"crypto"
],
"author": "Dave Scotese",
"license": "ISC",
"bugs": {
"url": "https://github.com/dscotese/kraken-grid/issues"
},
"homepage": "https://github.com/dscotese/kraken-grid#readme",
"dependencies": {
"body-parser": "^1.20.2",
"concat-stream": "^2.0.0",
"cryptex": "^1.0.1",
"express": "^4.18.2",
"express-basic-auth": "^1.2.1",
"express-session": "^1.17.3",
"glob": "^10.1.0",
"http-server": "^14.1.1",
"kraka-djs": "^1.0.3",
"nvm": "^0.0.4",
"prompt-sync": "^4.2.0",
"ws": "^8.4.0"
},
"devDependencies": {
"ava": "^4.3.3"
}
}