-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.14 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
{
"name": "qsys-qrc-proxy",
"version": "0.0.3",
"description": "A Websocket proxy of the QSYS QRC protocol",
"license": "MIT",
"repository": "qsys-tools/qsys-qrc-proxy",
"author": {
"name": "James Talmage",
"email": "[email protected]",
"url": "http://github.com/jamestalmage"
},
"engines": {
"node": ">=10"
},
"scripts": {
"serve": "tsc && node cli.js 127.0.0.1 -t 8084 --log & node test/server.js & parcel serve -d test/dist test/src/index.html",
"build": "tsc",
"prepublishOnly": "tsc",
"test": "xo"
},
"bin": "./cli.js",
"files": [
"cli.js",
"index.{js,d.ts}",
"codec.{js,d.ts}"
],
"keywords": [
"QSYS",
"Q-SYS",
"QRC",
"proxy"
],
"dependencies": {
"meow": "^8.0.0",
"split2": "^3.2.2",
"through2": "^4.0.2",
"ws": "^7.4.0"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^0.8.0",
"@types/node": "^14.14.10",
"@types/split2": "^2.1.6",
"@types/through2": "^2.0.36",
"@types/ws": "^7.4.0",
"angular": "^1.8.2",
"delay": "^4.4.0",
"parcel": "^1.12.4",
"ts-node": "^9.0.0",
"typescript": "^4.1.0-beta",
"xo": "^0.33.1"
},
"xo": {
"ignore": [
"test/**",
"cache/**"
]
}
}