-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
42 lines (42 loc) · 1001 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
{
"name": "node-red-contrib-finite-statemachine",
"version": "2.1.3",
"description": "A finite state machine implementation for node red.",
"author": "Lutz Reiter",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/lutzer/node-red-contrib-finite-statemachine.git"
},
"scripts": {
"test": "mocha tests/*.spec.js",
"build": "gulp build"
},
"keywords": [
"node-red",
"fsm",
"statemachine",
"state-machine",
"finite-state-machine"
],
"node-red": {
"nodes": {
"finite-state-machine": "dist/finite-state-machine-node.js"
}
},
"dependencies": {
"immutable": "^3.8.2",
"lodash": "^4.17.15",
"rxjs": "^6.5.5"
},
"devDependencies": {
"gulp": "^4.0.2",
"gulp-htmlmin": "^5.0.1",
"gulp-inline-source": "^4.0.0",
"gulp-minify": "^3.1.0",
"gulp-minify-inline": "^1.1.0",
"merge-stream": "^1.0.1",
"node-red": "^2.1.3",
"node-red-node-test-helper": "^0.2.7"
}
}