-
Notifications
You must be signed in to change notification settings - Fork 99
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.86 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.86 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/examples",
"version": "1.0.0",
"private": true,
"description": "Examples for node-wot (not published)",
"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/examples",
"dependencies": {
"@node-wot/binding-coap": "1.0.0",
"@node-wot/binding-http": "1.0.0",
"@node-wot/binding-mqtt": "1.0.0",
"@node-wot/binding-opcua": "1.0.0",
"@node-wot/core": "1.0.0"
},
"scripts": {
"build": "tsc -b",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"src/**/*.ts\" \"**/*.json\"",
"bindings:coap:server": "node dist/bindings/coap/example-server.js",
"bindings:coap:client": "node dist/bindings/coap/example-client.js",
"bindings:http:server": "node dist/bindings/http/example-server.js",
"bindings:http:server-secure": "node dist/bindings/http/example-server-secure.js",
"bindings:http:client": "node dist/bindings/http/example-client.js",
"bindings:opcua:1": "node dist/bindings/opcua/opcua-demo1.js",
"bindings:opcua:2": "node dist/bindings/opcua/opcua-demo2.js",
"bindings:opcua:coffee-machine": "node dist/bindings/opcua/opcua-coffee-machine-demo.js",
"quickstart:smart-clock": "node dist/quickstart/smart-clock.js",
"quickstart:simple-coffee-machine": "node dist/quickstart/simple-coffee-machine.js",
"quickstart:presence-sensor": "node dist/quickstart/presence-sensor.js"
},
"bugs": {
"url": "https://github.com/eclipse-thingweb/node-wot/issues"
},
"homepage": "https://github.com/eclipse-thingweb/node-wot/tree/master/packages/examples#readme",
"main": "index.js",
"keywords": []
}