-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.16 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.16 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
{
"author": "Grzegorz Błaszczyk <grzegorz.blaszczyk@goodylabs.com>",
"bin": {
"pm2-deploysmith": "./bin/index.mjs"
},
"dependencies": {
"inquirer": "^9.2.10"
},
"description": "CLI tool to generate PM2 post-deploy command using symlinks to get zero-downtime deployments",
"devDependencies": {
"@eslint/css": "^0.10.0",
"@eslint/js": "^9.31.0",
"@eslint/json": "^0.13.0",
"@eslint/markdown": "^7.0.0",
"@vitest/coverage-v8": "3.2.4",
"@vitest/ui": "3.2.4",
"c8": "^10.1.3",
"eslint": "^9.31.0",
"execa": "^9.6.0",
"globals": "^16.3.0",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=20.0.0"
},
"keywords": [
"pm2",
"deploy",
"cli",
"symlink",
"post-deploy"
],
"license": "MIT",
"name": "pm2-deploysmith",
"scripts": {
"build": "echo 'NOOP here'",
"e2e": "vitest run -c /dev/null --dir ./test-e2e",
"e2e:coverage": "c8 vitest run -c /dev/null --dir ./test-e2e --coverage",
"lint": "eslint . --ext .js,.mjs",
"start": "node ./bin/index.mjs",
"test": "vitest run",
"test:coverage": "c8 vitest run --coverage"
},
"type": "module",
"version": "1.1.1"
}