-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 906 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 906 Bytes
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
{
"name": "node-red-contrib-rxjs",
"version": "0.0.5",
"description": "",
"main": "index.js",
"scripts": {
"test": "mocha \"test/**/*_spec.js\""
},
"repository": {
"type": "git",
"url": "https://github.com/lutzer/node-red-contrib-rxjs.git"
},
"keywords": [
"node-red",
"rxjs",
"rx",
"observables"
],
"author": "Lutz Reiter",
"license": "ISC",
"node-red": {
"nodes": {
"rx of": "src/rx-of.js",
"rx timer": "src/rx-timer.js",
"rx range": "src/rx-range.js",
"rx subscribe": "src/rx-subscriber.js",
"rx operator": "src/rx-operator.js",
"rx combine": "src/rx-combine.js",
"rx observer": "src/rx-observer.js"
}
},
"dependencies": {
"lodash": "^4.17.15",
"rxjs": "^6.5.2"
},
"devDependencies": {
"node-red": "^0.20.7",
"node-red-node-test-helper": "^0.2.3",
"uuid": "^3.3.2"
}
}