-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.61 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
{
"name": "@totallyinformation/nrinstall",
"version": "5.0.0",
"description": "An alternative installer for Node-RED. Avoids global installs, no admin rights required.",
"scripts": {
"test:temp-install": "node ./scripts/test-temp-install.mjs",
"win-tag": "git tag -a v%npm_package_version% -m \"Release v%npm_package_version%\"; git push origin --tags",
"tag": "git tag -a v$npm_package_version -m \"Release v$npm_package_version\" && git push origin --tags"
},
"dependencies": {
"boxen": "^8.0.1",
"chalk": "^5.6.2",
"chalk-template": "^1.1.2",
"fs-extra": "^11.3.2",
"ora": "^9.3.0",
"replace-in-file": "^8.4.0",
"yargs": "^18.0.0"
},
"main": "bin/install-node-red.mjs",
"bin": {
"alternate-node-red-installer": "./bin/install-node-red.mjs",
"nrinstall": "./bin/install-node-red.mjs"
},
"type": "module",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TotallyInformation/alternate-node-red-installer.git"
},
"keywords": [
"node-red",
"installer",
"nrinstall",
"alternate-node-red-installer"
],
"author": {
"name": "Julian Knight",
"url": "https://github.com/TotallyInformation"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/TotallyInformation/alternate-node-red-installer/issues"
},
"homepage": "https://github.com/TotallyInformation/alternate-node-red-installer#readme",
"engines": {
"node": ">=20"
},
"browserslist": [
"> 0.5%",
"maintained node versions",
"last 2 versions",
"not dead",
"not ie < 11"
]
}