-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.23 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
{
"name": "privateer",
"version": "0.5.5",
"description": "Integrate with exchanges like Bitfinex for crypto-currency trading.",
"main": "./lib/privateer.js",
"scripts": {
"sandbox": "node -i -e 'ccxtExchangeHack = new (require(\"ccxt\").bittrex)(); _ = require(\"@sailshq/lodash\"); global[require(\"./package.json\").name] = require(\"./\"); console.log(\"\\n\\n\\n\\n--\");'",
"test": "npm run lint && npm run custom-tests",
"custom-tests": "node ./node_modules/mocha/bin/mocha -R spec",
"lint": "node ./node_modules/eslint/bin/eslint . --max-warnings=0 && echo '✔ Your code looks good.'"
},
"keywords": [
"crypto",
"bitfinex",
"cryptocurrency",
"forex",
"financial",
"fintech",
"sails.js"
],
"author": "The Sails Company",
"license": "MIT",
"dependencies": {
"@sailshq/lodash": "^3.10.2",
"ccxt": "1.10.236",
"chalk": "2.3.0",
"flaverr": "^1.8.0",
"machine": "^15.0.0-11",
"machinepack-http": "^4.0.0-2",
"parley": "^3.3.2",
"semver": "5.4.1"
},
"repository": {
"type": "git",
"url": "[email protected]:mikermcneil/privateer.git"
},
"devDependencies": {
"eslint": "4.11.0",
"mocha": "3.0.2"
},
"engines": {
"node": ">=7.9"
}
}