This repository has been archived by the owner on Feb 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
57 lines (57 loc) · 1.8 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
{
"name": "node-red-contrib-web-of-things",
"version": "2.0.0-beta.6",
"description": "Web of Things node for node-RED.",
"author": "[email protected]",
"contributors": [
"Adel Fatkhutdinov <[email protected]>",
"hidetak"
],
"license": "MIT",
"keywords": [
"wot",
"node-red"
],
"engines": {
"node": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/thingweb/node-red-contrib-web-of-things"
},
"homepage": "https://github.com/thingweb/node-red-contrib-web-of-things/blob/master/README.md",
"node-red": {
"nodes": {
"wot-thing": "dist/wot-thing.js",
"wot-property": "dist/wot-property.js",
"wot-action": "dist/wot-action.js",
"wot-event": "dist/wot-event.js",
"wot-server-config": "dist/wot-server-config.js",
"wot-thing-config": "dist/wot-thing-config.js",
"wot-server-end": "dist/wot-server-end.js",
"wot-server-property": "dist/wot-server-property.js",
"wot-server-action": "dist/wot-server-action.js",
"wot-server-event": "dist/wot-server-event.js"
}
},
"scripts": {
"build": "npm run copy:src2dist && tsc",
"copy:src2dist": "node -e \"require('fs-extra').copySync('./src', './dist')\"",
"publish": "npm publish --access=public",
"publish:beta": "npm publish --access=public --tag=beta",
"test": "mocha --require ts-node/register --extension ts"
},
"dependencies": {
"@node-wot/binding-coap": "^0.8.12",
"@node-wot/binding-http": "^0.8.12",
"@node-wot/binding-modbus": "^0.8.12",
"@node-wot/binding-mqtt": "^0.8.12",
"@node-wot/binding-opcua": "^0.8.12",
"@node-wot/binding-websockets": "^0.8.12",
"@node-wot/core": "^0.8.12"
},
"devDependencies": {
"fs-extra": "^11.2.0",
"typescript": "^4.9.5"
}
}