forked from IlanFrumer/BitMEX-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.14 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": "bitmex-node",
"version": "1.9.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p src/",
"clean": "rm -rf dist/",
"deploy": "git pull --rebase origin master && git push origin master",
"major": "npm version major && npm publish",
"minor": "npm version minor && npm publish",
"patch": "npm version patch && npm publish",
"postpublish": "git push origin master --follow-tags",
"prepublishOnly": "npm run build -s",
"generate": "node dist/generator/apiGenerator.js",
"watch": "npm run build -- --watch"
},
"author": "Ilan Frumer <[email protected]>",
"license": "MIT",
"dependencies": {
"app-root-path": "^2.2.1",
"debug": "^4.1.1",
"querystring": "^0.2.0",
"request": "^2.88.0",
"rxjs": "^6.5.2",
"rxjs-compat": "^6.5.2",
"tslib": "^1.10.0",
"ws": "^7.1.2"
},
"devDependencies": {
"@types/app-root-path": "^1.2.4",
"@types/debug": "4.1.5",
"@types/node": "^12.7.1",
"@types/request": "^2.48.2",
"@types/ws": "^6.0.2",
"typescript": "~3.5.3",
"typescript-formatter": "^7.2.2"
}
}