-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 1.27 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
{
"name": "node-red-contrib-reusable-flows",
"version": "1.0.0",
"description": "a single Node-RED node representing a complete self-contained flow",
"node-red": {
"nodes": {
"reusable-flows": "reusable-flows/reusable-flows.js"
}
},
"scripts": {
"build": "rimraf reusable-flows && rollup -c rollup.config.js && tsc && cp src/*.html ./reusable-flows && mv src/*.d.ts ./reusable-flows && rm src/*.js*",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rozek/node-red-contrib-reusable-flows.git"
},
"keywords": [
"node-red",
"javascript",
"function",
"node"
],
"author": "Andreas Rozek <a.rozek@gmx.de> (https://www.rozek.de/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/rozek/node-red-contrib-reusable-flows/issues"
},
"homepage": "https://github.com/rozek/node-red-contrib-reusable-flows#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@rollup/plugin-typescript": "^8.2.5",
"rimraf": "^3.0.2",
"rollup": "^2.56.2",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.3.5"
},
"dependencies": {
"javascript-interface-library": "^1.0.0"
}
}