-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
37 lines (37 loc) · 1.12 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
{
"name": "node-red-contrib-components",
"description": "reusable flows with a well defined API. Write components and use them anywhere in your node-red app",
"version": "0.3.4",
"license": "MIT",
"author": "Oliver Charlet <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/ollixx/node-red-contrib-components.git"
},
"keywords": [
"node-red",
"component",
"reusable",
"flow",
"api",
"subflow"
],
"node-red": {
"nodes": {
"component-start": "components/component-start.js",
"component-return": "components/component-return.js",
"run-component": "components/run-component.js"
}
},
"devDependencies": {
"mocha": "^7.0.1",
"node-red": "^1.2.2",
"node-red-node-test-helper": "^0.2.7",
"puppeteer": "^12.0.1"
},
"dependencies": {},
"scripts": {
"test": "mocha components/test/*_spec.js",
"uitest": "npm --prefix ./components/uitest/ install; cd components/uitest/; mocha *_spec.js"
}
}