-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
44 lines (44 loc) · 1.35 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": "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 <ilanfrumer@gmail.com>",
"license": "MIT",
"dependencies": {
"app-root-path": "^3.0.0",
"debug": "^4.1.1",
"querystring": "^0.2.0",
"request": "^2.88.2",
"rxjs": "^6.6.0",
"rxjs-compat": "^6.6.0",
"ws": "^7.3.1"
},
"devDependencies": {
"@types/app-root-path": "^1.2.4",
"@types/debug": "4.1.5",
"@types/node": "^14.0.23",
"@types/request": "^2.48.5",
"@types/ws": "^7.2.6",
"typescript": "~3.9.7",
"typescript-formatter": "^7.2.2"
},
"prettier": {
"tabWidth": 4,
"requirePragma": true,
"bracketSpacing": true
}
}