-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
62 lines (62 loc) · 1.67 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
52
53
54
55
56
57
58
59
60
61
62
{
"name": "ccex-api",
"version": "0.0.17",
"description": "Crypto currencies exchanges api implementation using typescript and rxjs",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "gulp build",
"build:publish": "npm run build && npm publish dist",
"format": "prettier --config .prettierrc --write src/**/*.ts",
"lint": "tslint -c tslint.json --project tsconfig.json \"src/**/*.ts\"",
"test-mocha": "mocha -r ts-node/register ./src/**/*.spec.ts",
"test": "jest --runInBand --detectOpenHandles",
"test-w": "npm test -- --watch --onlyChanged"
},
"keywords": [
"crypto",
"crypto currency",
"cryptocurrency",
"cryptocurrencies",
"bitcoin",
"exchange",
"realtime api",
"websocket api",
"websocket",
"pubnub",
"bitfinex",
"binance",
"coinbase",
"bitbank"
],
"repository": "[email protected]:dang1412/ccex-api.git",
"author": "Dang Thanh Tung",
"license": "MIT",
"dependencies": {
"@types/node-fetch": "^2.3.5",
"@types/pubnub": "^4.0.5",
"@types/ws": "^6.0.1",
"node-fetch": "^2.6.0",
"pubnub": "^4.21.7",
"querystring": "^0.2.0",
"rxjs": "^6.4.0",
"ws": "^6.1.3"
},
"devDependencies": {
"@types/gulp": "^4.0.5",
"@types/jest": "^24.0.3",
"@types/jest-diff": "^20.0.0",
"@types/node": "^11.9.3",
"gulp": "^4.0.0",
"gulp-typescript": "^5.0.0",
"jest": "^24.1.0",
"prettier": "1.16.4",
"ts-jest": "^23.10.5",
"ts-node": "^8.0.1",
"tslint": "^5.12.1",
"tslint-eslint-rules": "^5.4.0",
"tslint-no-unused-expression-chai": "^0.1.4",
"typescript": "^3.3.3",
"vrsource-tslint-rules": "^6.0.0"
}
}