-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.41 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
{
"name": "node-red-contrib-webthingsio",
"version": "0.2.3",
"description": "Set/get properties, execute actions and inject on events of your WebThings",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bewee/node-red-contrib-webthingsio.git"
},
"keywords": [
"node-red",
"webthings",
"webthingsio"
],
"author": "bewee",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/bewee/node-red-contrib-webthingsio/issues"
},
"homepage": "https://github.com/bewee/node-red-contrib-webthingsio#readme",
"node-red": {
"nodes": {
"webthingsio-gateway": "webthingsio-gateway.js",
"webthingsio-set-property": "webthingsio-set-property.js",
"webthingsio-get-property": "webthingsio-get-property.js",
"webthingsio-execute-action": "webthingsio-execute-action.js",
"webthingsio-inject": "webthingsio-inject.js"
}
},
"dependencies": {
"semver": "^7.3.5",
"webthings-client": "^4.1.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-html": "^6.1.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jquery": "^1.5.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1"
}
}