-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.54 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
{
"name": "orderbook-synchronizer",
"version": "5.0.1",
"description": "Orderbook Synchronizer for cryptocurrency exchanges",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"start": "node example.js",
"prebuild": "rimraf lib",
"build": "tsc",
"prepublish": "rimraf lib && tsc",
"test": "jest",
"coveralls": "jest --coverage --coverageReporters=text-lcov | coveralls",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/valamidev/orderbook-synchronizer.git"
},
"keywords": [
"orderbook",
"exchanges",
"binance",
"ccxt",
"algotrading",
"realtime",
"api"
],
"author": "",
"license": "ISC",
"devDependencies": {
"coveralls": "^3.0.11",
"@types/jest": "^24.0.18",
"@types/node": "^12.12.26",
"@types/request": "^2.48.4",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.21.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^7.2.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.1",
"husky": "^4.2.3",
"jest": "^24.9.0",
"lint-staged": "^10.1.1",
"prettier": "^2.0.2",
"rimraf": "^3.0.2",
"ts-jest": "^24.0.2",
"ts-node": "^8.4.1",
"typescript": "^3.8.0"
},
"files": [
"lib/**/*"
]
}