-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
54 lines (54 loc) · 1.37 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
{
"name": "garnet-market-maker",
"version": "0.0.13",
"description": "Automatic market maker on Stellar Network",
"keywords": [
"stellar",
"garnet",
"trade",
"market",
"maker",
"bot"
],
"homepage": "https://github.com/julesGoullee/garnet",
"main": "main.js",
"engines": {
"node": ">=7.4.0",
"npm": ">=4.0.5"
},
"scripts": {
"test": "mocha --harmony-async-await --trace-warnings -R spec ./test/test.config.js ./test/spec/*.js --timeout 5000",
"lint": "eslint .",
"travis": "npm run lint && npm run test",
"bot": "node --harmony-async-await --trace-warnings bot/run.js",
"gen-accounts": "node --harmony-async-await --trace-warnings genAccounts"
},
"repository": {
"type": "git",
"url": "https://github.com/julesGoullee/garnet"
},
"author": {
"name": "Jules Goullée",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"babel-eslint": "7.1.1",
"bignumber.js": "4.0.0",
"bluebird": "3.4.7",
"chai": "3.5.0",
"chai-as-promised": "6.0.0",
"chai-spies": "0.7.1",
"eslint": "3.10.2",
"eslint-plugin-babel": "4.0.0",
"jsonfile": "2.4.0",
"mocha": "3.2.0",
"mock-require": "2.0.1",
"npmlog": "4.0.2",
"redis": "2.6.5",
"request": "2.79.0",
"request-promise": "4.1.1",
"stellar-sdk": "0.6.2",
"uuid-random": "1.0.5"
}
}