-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
44 lines (44 loc) · 1.19 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": "gemini-api",
"version": "2.0.4",
"description": "Node.js client for the Gemini cryptocurrency exchange API.",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"build": "babel src -d dist",
"dev": "nodemon src/index.js --exec babel-node",
"test": "ava"
},
"typings": "gemini-api.d.ts",
"engines": {
"node": ">=6"
},
"repository": "http://github.com/mjesuele/gemini-api-node.git",
"author": "Matthew Jesuele <matt@makeapps.io>",
"license": "MIT",
"devDependencies": {
"ava": "^0.19.1",
"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",
"pipe-peek": "^1.0.1"
},
"dependencies": {
"axios": "^0.16.0",
"lodash": "^4.17.4",
"qs": "^6.4.0",
"shortid": "^2.2.8",
"ws": "^2.2.3"
}
}