-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.61 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.61 KB
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
63
64
65
{
"name": "@speedapi/node",
"version": "1.0.1",
"description": "SpeedAPI wire protocol implementation for TypeScript",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf dist && rollup -c",
"test:sus": "susc -l ts __tests__/*.sus",
"test": "pnpm lint && pnpm test:sus && jest --coverage",
"lint": "pnpm eslint src --ext .ts",
"pub": "pnpm build && pnpm publish --access public"
},
"files": [
"dist",
"package.json"
],
"repository": {
"type": "github",
"url": "https://github.com/speedapi/driver-ts-node.git"
},
"keywords": [
"speedapi",
"api",
"protocol",
"binary",
"front-end",
"backend",
"node",
"websocket",
"tls",
"tcp"
],
"author": "portasynthinca3",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/speedapi/driver-ts-node/issues"
},
"homepage": "https://github.com/speedapi/info#readme",
"devDependencies": {
"@types/bluebird": "^3.5.36",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.7",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"eslint": "^8.11.0",
"eslint-config-airbnb-typescript": "^16.1.2",
"eslint-plugin-import": "^2.25.4",
"jest": "^27.5.1",
"rollup": "^2.67.3",
"rollup-plugin-typescript2": "^0.31.1",
"ts-jest": "^27.1.3",
"ts-toolbelt": "^9.6.0",
"typescript": "^4.6.2"
},
"dependencies": {
"@speedapi/driver": "^1.5.1",
"tslib": "^2.3.1",
"ws": "^8.7.0"
},
"peerDependencies": {
"@speedapi/driver": "^1.5.1",
"typescript": "^4.6"
}
}