-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 996 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 996 Bytes
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
{
"name": "solid-ws",
"version": "0.4.3",
"description": "Web sockets for Solid",
"main": "index.js",
"scripts": {
"build": "echo nothing to build",
"test": "./node_modules/mocha/bin/mocha ./test/*.js --exit",
"server-injection-tests": "./node_modules/mocha/bin/mocha ./test/serverInjection/*.js --exit",
"run-example": "node example/server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/solid/node-solid-ws"
},
"keywords": [
"solid",
"websockets",
"live",
"updates",
"decentralized",
"web"
],
"author": "Nicola Greco <[email protected]> (http://nicola.io/)",
"license": "MIT",
"dependencies": {
"debug": "^4.3.1",
"express": "^4.18.3",
"run-parallel": "^1.1.10",
"uuid": "^8.3.2",
"ws": "^7.4.2"
},
"devDependencies": {
"chai": "^4.4.1",
"dirty-chai": "^2.0.1",
"mocha": "^8.2.1",
"node-mocks-http": "^1.14.1",
"sinon": "^17.0.1",
"sinon-chai": "^3.7.0"
}
}