-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.22 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.22 KB
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
54
55
56
57
58
59
60
61
62
63
{
"name": "node-red-template",
"version": "0.0.0",
"description": "Template to quickly start a new node-red project",
"main": "node_modules/node-red/red.js",
"bin": "node_modules/node-red/red.js",
"scripts": {
"start": "node node_modules/node-red/red.js -v --userDir . --settings ./settings.js",
"test": "echo \"Error: no test specified\" && exit 1",
"pkg": "npm rebuild ; pkg . --out-path ./packages",
"pkg-macos": "npm rebuild ; pkg . -t node16-macos-x64 --out-path ./packages/Mac/",
"pkg-linux": "npm rebuild ; pkg . -t node16-linux-x64 --out-path ./packages/Linux/",
"pkg-win": "npm rebuild ; pkg . -t node16-win-x64 --out-path ./packages/Win/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/s1seven/node-red-template.git"
},
"keywords": [
"node-red"
],
"author": "getlarge",
"license": "ISC",
"bugs": {
"url": "https://github.com/s1seven/node-red-template/issues"
},
"homepage": "https://github.com/s1seven/node-red-template#readme",
"dependencies": {
"@s1seven/schema-tools-certificate-summary": "^0.3.0",
"@s1seven/schema-tools-extract-emails": "^0.4.1",
"@s1seven/schema-tools-generate-html": "^0.4.3",
"@s1seven/schema-tools-generate-pdf": "^0.2.6",
"@s1seven/schema-tools-validate": "^0.3.5",
"node-red": "^3.0.2",
"node-red-dashboard": "^3.4.0"
},
"devDependencies": {
"pkg": "^5.8.0"
},
"pkg": {
"scripts": [
"node_modules/node-red/red.js",
"node_modules/node-red/**/*.js",
"node_modules/@node-red/**/*.js",
"node_modules/node-red-dashboard/nodes/*.js",
"node_modules/node-red-dashboard/*.js"
],
"assets": [
"node_modules/@node-red/**/*.html",
"node_modules/@node-red/**/*.ico",
"node_modules/@node-red/**/*.svg",
"node_modules/@node-red/**/*.json",
"node_modules/@node-red/**/*.css",
"node_modules/@node-red/**/*.mst",
"node_modules/node-red-dashboard/nodes/*.html",
"node_modules/node-red-dashboard/nodes/locales/*",
"node_modules/node-red-dashboard/nodes/icons/*.png",
"node_modules/node-red-dashboard/dist/**",
"node_modules/font-awesome/css/**",
"node_modules/material-design-icons-iconfont/dist/**"
]
}
}