-
Notifications
You must be signed in to change notification settings - Fork 100
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.31 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.31 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
{
"name": "@node-wot/binding-websockets",
"version": "0.8.15",
"description": "WebSockets client & server protocol binding for node-wot",
"author": "Eclipse Thingweb <thingweb-dev@eclipse.org> (https://thingweb.io/)",
"license": "EPL-2.0 OR W3C-20150513",
"repository": "https://github.com/eclipse-thingweb/node-wot/tree/master/packages/binding-websockets",
"publishConfig": {
"access": "public"
},
"files": [
"dist/"
],
"main": "dist/ws.js",
"types": "dist/ws.d.ts",
"browser": "dist/ws-browser.js",
"dependencies": {
"@node-wot/binding-http": "0.8.15",
"@node-wot/core": "0.8.15",
"@node-wot/td-tools": "0.8.15",
"slugify": "^1.4.5",
"ws": "^7.5.10"
},
"scripts": {
"build": "tsc -b",
"test": "mocha --unhandled-rejections=strict --require ts-node/register --extension ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\" \"**/*.json\""
},
"bugs": {
"url": "https://github.com/eclipse-thingweb/node-wot/issues"
},
"homepage": "https://github.com/eclipse-thingweb/node-wot/tree/master/packages/binding-websockets#readme",
"directories": {
"test": "test"
},
"keywords": []
}