forked from DeanCording/node-red-contrib-state-machine
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
37 lines (37 loc) · 943 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
{
"name": "node-red-contrib-persistent-fsm",
"version": "1.2.1",
"description": "A Node Red node for implementing a finite state machine.",
"dependencies": {
"javascript-state-machine": "3.*"
},
"author": "hufftheweevil",
"license": "MIT",
"keywords": [
"node-red",
"iot",
"state machine",
"finite state machine",
"state",
"transition"
],
"bugs": {
"url": "https://github.com/hufftheweevil/node-red-contrib-persistent-fsm/issues"
},
"homepage": "https://github.com/hufftheweevil/node-red-contrib-persistent-fsm",
"repository": {
"type": "git",
"url": "git+https://github.com/hufftheweevil/node-red-contrib-persistent-fsm.git"
},
"node-red": {
"nodes": {
"state-machine": "state-machine.js"
}
},
"scripts": {
"start": "pm2 start node-red --watch && pm2 log",
"stop": "pm2 stop node-red"
},
"main": "state-machine.js",
"devDependencies": {}
}