-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
53 lines (53 loc) · 1.54 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
51
52
53
{
"name": "node-red-contrib-dynamorse-core",
"version": "0.2.1",
"description": "Setup and support for Streampunk Media's Node-RED nodes",
"author": "Streampunk Media Ltd",
"license": "Apache-2.0",
"keywords": [
"node-red"
],
"dependencies": {
"fastqueue": "^0.1.0",
"highland": "^2.13.0",
"nmos-ledger": "^1.0.20",
"uuid": "^2.0.1",
"ws": "^6.1.2"
},
"devDependencies": {
"dynamorse-test": "^0.2.1",
"eslint": "^5.9.0",
"tape": "^4.9.1"
},
"scripts": {
"test": "tape test/*Spec.js",
"postinstall": "node scripts/dynamorse-setup.js",
"lint": "eslint **/*.js",
"lint-html": "eslint **/*.js -f html -o ./reports/lint-results.html",
"lint-fix": "eslint --fix **/*.js"
},
"node-red": {
"nodes": {
"self": "nodes/self.js",
"device": "nodes/device.js",
"rtp-ext": "nodes/rtp-ext.js",
"grain-xray": "nodes/90-grain-xray.js",
"dashboard": "nodes/94-dashboard.js",
"splice": "nodes/91-splice.js",
"cleave": "nodes/92-cleave.js",
"braid": "nodes/93-braid.js",
"funnelGrain": "test/funnelGrain.js",
"funnelCount": "test/funnelCount.js",
"valveTest": "test/valveTest.js",
"spoutTest": "test/spoutTest.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Streampunk/node-red-contrib-dynamorse-core.git"
},
"bugs": {
"url": "https://github.com/Streampunk/node-red-contrib-dynamorse-core/issues"
},
"homepage": "https://github.com/Streampunk/node-red-contrib-dynamorse-core#readme"
}