-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
40 lines (40 loc) · 1.07 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
{
"name": "hitbtc-api",
"version": "3.0.2",
"description": "Node.js client for the HitBTC API.",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"build": "babel src -d dist",
"dev": "nodemon src/index.js --exec babel-node"
},
"engines": {
"node": ">=6"
},
"repository": "http://github.com/mjesuele/hitbtc-api-node.git",
"author": "Matthew Jesuele <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.1",
"babel-preset-env": "^1.1.8",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^3.11.0",
"eslint-config-airbnb-base": "^10.0.1",
"eslint-config-makeapps": "latest",
"eslint-plugin-better": "^0.1.5",
"eslint-plugin-fp": "^2.2.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-lodash-fp": "^2.1.3",
"flow-bin": "^0.43.1",
"nodemon": "^1.11.0"
},
"dependencies": {
"axios": "^0.16.0",
"lodash": "^4.17.4",
"qs": "^6.4.0",
"shortid": "^2.2.8",
"ws": "^2.2.3"
}
}