-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
51 lines (51 loc) · 1.57 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
{
"name": "alternate-node-red-installer",
"version": "3.0.2",
"description": "An alternative installer for Node-RED. Avoids global installs, no admin rights required.",
"scripts": {
"patch": "npm version patch -m \"Patch version bump to %s\" ",
"minor": "npm version minor -m \"Minor version bump to %s\" ",
"major": "npm version major -m \"Major version bump to %s\"",
"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": "^5.0.1",
"chalk": "^4.1.1",
"fs-extra": "^10.1.0",
"ora": "^5.4.0",
"replace-in-file": "^6.2.0",
"yargs": "^17.5.1"
},
"main": "bin/install-node-red.js",
"bin": {
"alternate-node-red-installer": "./bin/install-node-red.js",
"nrinstall": "./bin/install-node-red.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TotallyInformation/alternate-node-red-installer.git"
},
"keywords": [
"node-red"
],
"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": ">=14.14"
},
"browserslist": [
"> 0.5%",
"maintained node versions",
"last 2 versions",
"not dead",
"not ie < 11"
]
}