forked from chuank/node-red-contrib-particle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 994 Bytes
/
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
{
"name": "node-red-contrib-particle",
"version": "0.0.8",
"repository": {
"type": "git",
"url": "https://github.com/chuank/node-red-contrib-particle"
},
"description": "Node-RED node to connect to Particle devices. Used to call functions, read variables or listen to Server-Sent Events (SSEs)",
"main": "particle.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"eventsource": "",
"request": "",
"querystring": ""
},
"eslintConfig": {
"globals": {
"RED": true
},
"rules": {
"no-console": 0
}
},
"node-red": {
"nodes": {
"particle": "particle/particle.js"
}
},
"keywords": [
"node-red",
"particle",
"core",
"photon",
"electron",
"P1",
"iot",
"spark",
"device"
],
"author": "Chuan Khoo <[email protected]> (https://chuank.com)",
"contributors": [ "Ethan (https://github.com/techlemur)" ],
"license": "MIT"
}