-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.33 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
45
46
47
48
49
50
51
{
"name": "btcmarkets-node-sdk",
"version": "0.1.8",
"author": {
"name": "BTC Markets",
"email": "[email protected]",
"url": "https://www.btcmarkets.net"
},
"repository": {
"type": "git",
"url": "https://github.com/BTCMarkets/btcmarkets-node-sdk"
},
"license": "MIT",
"main": "dist/index.js",
"module": "dist/btcmarkets-node-sdk.cjs.production.min",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "tsdx watch --target node",
"build": "tsdx build --target node",
"test": "tsdx test",
"lint": "tsdx lint src",
"lint-fix": "tsdx lint --fix",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\""
},
"peerDependencies": {},
"husky": {
"hooks": {
"pre-commit": "tsdx lint src"
}
},
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/ws": "^6.0.3",
"babel-eslint": "^10.0.3",
"husky": "^3.0.5",
"prettier": "^1.18.2",
"tsdx": "^0.14.1",
"tslib": "^1.10.0",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.5.2"
},
"dependencies": {
"axios": "^0.27.2",
"crypto": "^1.0.1",
"ws": "^7.4.6"
}
}