-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.48 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.48 KB
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
{
"name": "satoshibot",
"version": "1.0.0",
"description": "bot to do trade on tradeSatoshi",
"main": "main.js",
"nyc": {
"require": [
"babel-register"
],
"sourceMap": false,
"instrument": false
},
"scripts": {
"test": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text mocha test/*.js",
"quickTest": "mocha --compilers js:babel-core/register",
"build": "./node_modules/.bin/babel src -d lib",
"start": "node src/targetMarkets.js && npm run build && node lib/main.js",
"crypt": "npm run build && node lib/examples/cryptopiaExamples.js"
},
"dependencies": {
"async": "^2.6.0",
"async-es": "^2.6.0",
"bunyan": "^1.8.12",
"crypto": "~0.0.3",
"crypto-js": "^3.1.9-1",
"microtime": "^2.1.7",
"nonce": "^1.0.4",
"request": "^2.83.0",
"request-promise": "^4.2.2",
"requestretry": "^1.13.0",
"underscore": "~1.7.0",
"verror": "~1.6.0"
},
"author": "Justin Schellenberg",
"license": "ISC",
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-plugin-istanbul": "^4.1.5",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.2",
"cross-env": "^5.1.3",
"mocha": "^5.0.0",
"nyc": "^11.4.1",
"sinon": "^4.3.0"
}
}