forked from lorenwest/node-red-contrib-state
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.15 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
{
"name": "node-red-contrib-state",
"author": "Loren West - github.com/lorenwest",
"version": "1.6.1",
"description": "Shared state with persistence, notification, and history",
"license": "MIT",
"homepage": "https://github.com/lorenwest/node-red-contrib-state",
"bugs": {
"url": "https://github.com/lorenwest/node-red-contrib-state/issues"
},
"dependencies": {
"convert-units": "^2.3.4",
"is-valid-var-name": "^1.0.2",
"lodash": "^4.17.15",
"mkdirp": "^1.0.3"
},
"devDependencies": {},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/lorenwest/node-red-contrib-state.git"
},
"keywords": [
"node-red",
"state",
"shared state",
"persistent state",
"state machine",
"data type",
"data conversion",
"units",
"units of measure",
"node",
"red",
"contrib",
"nodered",
"shared",
"persistent",
"machine"
],
"node-red": {
"nodes": {
"shared-state": "lib/state.js",
"get-shared-state": "lib/getState.js",
"set-shared-state": "lib/setState.js"
}
}
}