-
-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
66 lines (66 loc) · 3.34 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "pm2-installer",
"version": "3.4.3",
"description": "Install pm2 offline as a service on Windows or Linux",
"homepage": "https://github.com/jessety/pm2-installer#readme",
"bugs": {
"url": "https://github.com/jessety/pm2-installer/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jessety/pm2-installer.git"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/jessety"
},
"license": "MIT",
"author": "Jesse Youngblood",
"scripts": {
"bundle": "node ./src/tools/script-for-os.js",
"bundle:default": "echo 'ERROR: Could not detect host platform'",
"bundle:unix": "bash ./src/unix/bundle.sh",
"bundle:windows": "PowerShell -NoProfile -ExecutionPolicy Bypass src\\windows\\bundle.ps1",
"configure": "node ./src/tools/script-for-os.js",
"configure-policy": "node ./src/tools/script-for-os.js",
"configure-policy:default": "echo 'Altering PowerShell execution policy not necessary for this platform.';",
"configure-policy:windows": "PowerShell -NoProfile -ExecutionPolicy Bypass src\\windows\\configure-policy-shell.ps1",
"configure:default": "echo 'Altering npm configuration not necessary for this platform.';",
"configure:windows": "PowerShell -NoProfile -ExecutionPolicy Bypass src\\windows\\configure-setup.ps1",
"deconfigure": "node ./src/tools/script-for-os.js",
"deconfigure:default": "echo 'Altering npm configuration not necessary for this platform.';",
"deconfigure:windows": "PowerShell -NoProfile -ExecutionPolicy Bypass src\\windows\\configure-remove.ps1",
"format": "sort-package-json && prettier --write '**/*.{ts,js,mjs,cjs,json,yml,md}' && eslint --fix .",
"info": "node ./src/bundle-info/current.js",
"info-config": "PowerShell -NoProfile -ExecutionPolicy Bypass src\\windows\\info-config.ps1",
"info-service": "PowerShell -NoProfile -ExecutionPolicy Bypass src\\windows\\info-service.ps1",
"preinstall": "echo WARNING: Running install in this project is not necessary to install or bundle pm2. See README.",
"postinstall": "echo WARNING: Running install in this project is not necessary to install or bundle pm2. See README.",
"lint": "eslint . && editorconfig-checker .",
"remove": "node ./src/tools/script-for-os.js",
"remove:default": "echo 'ERROR: Could not detect host platform'",
"remove:unix": "bash ./src/unix/remove.sh",
"remove:windows": "PowerShell -NoProfile -ExecutionPolicy Bypass src\\windows\\remove.ps1",
"setup": "node ./src/tools/script-for-os.js",
"setup:default": "echo 'ERROR: Could not detect host platform'",
"setup:unix": "bash ./src/unix/setup.sh",
"setup:windows": "PowerShell -NoProfile -ExecutionPolicy Bypass src\\windows\\setup.ps1",
"unbundle": "node ./src/tools/script-for-os.js",
"unbundle:default": "echo 'ERROR: Could not detect host platform'",
"unbundle:unix": "bash ./src/unix/unbundle.sh",
"unbundle:windows": "PowerShell -NoProfile -ExecutionPolicy Bypass src\\windows\\unbundle.ps1"
},
"dependencies": {
"@jessety/pm2-logrotate": "^2.7.1",
"node-windows": "1.0.0-beta.6",
"pm2": "5.2.2"
},
"devDependencies": {
"@jessety/eslint-config": "^2.4.0",
"@jessety/prettier-config": "^1.2.0",
"editorconfig-checker": "^4.0.2",
"eslint": "^8.28.0",
"prettier": "^2.7.1",
"sort-package-json": "^2.1.0"
}
}