-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.5 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": "@fugle/realtime",
"version": "0.4.0",
"description": "Fugle Realtime API client library for Node.js",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"prebuild": "rimraf lib",
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"coverage": "codecov",
"lint": "eslint '{src,test}/**/*.ts' --fix",
"release": "standard-version"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/fugle-dev/fugle-realtime-node.git"
},
"keywords": [
"fugle",
"realtime",
"stock"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/fugle-dev/fugle-realtime-node/issues"
},
"homepage": "https://github.com/fugle-dev/fugle-realtime-node#readme",
"dependencies": {
"isomorphic-fetch": "^3.0.0",
"isomorphic-ws": "^4.0.1",
"query-string": "^7.0.1",
"ws": "^8.2.2"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@types/isomorphic-fetch": "^0.0.35",
"@types/jest": "^27.0.1",
"@types/node": "^16.9.1",
"@types/ws": "^7.4.7",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"codecov": "^3.8.3",
"eslint": "^7.32.0",
"husky": "^7.0.2",
"jest": "^27.1.1",
"rimraf": "^3.0.2",
"standard-version": "^9.3.1",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
}
}