-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.5 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.5 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
{
"name": "websocketapi",
"version": "1.1.17",
"description": "",
"main": "out/index.js",
"types": "out/index.d.ts",
"browser": "out/client/index.js",
"homepage": "https://github.com/T-Reimer/WebSocketAPI",
"repository": {
"type": "git",
"url": "https://github.com/T-Reimer/WebSocketAPI"
},
"scripts": {
"test": "nyc mocha test/autoTest/test.js",
"test:browser": "mochify test/autoTest/client.js",
"build:client": "watchify out/client/index.js -o static/bundle.js -s WebSocketAPI",
"build:tsc": "tsc --watch",
"build": "npx browserify out/client/index.js -o static/bundle.js -s WebSocketAPI",
"docs": "npx typedoc --plugin typedoc-plugin-markdown --excludeExternals --excludeNotExported --name WebSocketAPI --includeVersion"
},
"keywords": [
"Websocket",
"api"
],
"author": "Trevor Reimer",
"license": "ISC",
"dependencies": {
"body-parser": "^1.20.2",
"express": "^4.19.2",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/ws": "^8.5.10",
"browserify": "^17.0.0",
"chai": "^4.4.1",
"eslint": "^9.6.0",
"exec-sh": "^0.4.0",
"mocha": "^10.6.0",
"mochify": "^9.2.0",
"node-fetch": "^2.7.0",
"nyc": "^17.0.0",
"open": "^10.1.0",
"typedoc": "^0.26.4",
"typedoc-plugin-markdown": "^4.2.1",
"typescript": "^5.5.3"
}
}