-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.76 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.76 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
{
"name": "@uscreen.de/dev-service",
"type": "module",
"version": "0.14.1",
"packageManager": "pnpm@10.20.0+sha512.cf9998222162dd85864d0a8102e7892e7ba4ceadebbf5a31f9c2fce48dfce317a9c53b9f6464d1ef9042cba2e02ae02a9f7c143a2b438cd93c91840f0192b9dd",
"description": "cli to manage services in dev repos",
"author": "Martin Herting <herting@uscreen.de>",
"license": "MIT",
"homepage": "https://github.com/uscreen/dev-service",
"repository": {
"type": "git",
"url": "git+https://github.com/uscreen/dev-service.git"
},
"main": "index.js",
"bin": {
"service": "./bin/cli.js",
"service-install": "./bin/cli-install.js",
"service-list": "./bin/cli-list.js",
"service-logs": "./bin/cli-logs.js",
"service-start": "./bin/cli-start.js",
"service-stop": "./bin/cli-stop.js",
"service-restart": "./bin/cli-restart.js",
"service-check": "./bin/cli-check.js",
"service-pull": "./bin/cli-pull.js",
"service-status": "./bin/cli-status.js"
},
"files": [
"bin/",
"src/",
"templates"
],
"engines": {
"node": ">=20"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"test": "node --test --test-concurrency=1 --test-reporter spec",
"test:cov": "c8 --reporter=html --reporter=text node --test --test-concurrency=1",
"test:ci": "c8 --reporter=lcov --reporter=text node --test --test-concurrency=1",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"chalk": "^5.6.2",
"commander": "^14.0.3",
"fs-extra": "^11.3.4",
"nanoid": "^5.1.7",
"parse-json": "^8.3.0",
"read-pkg": "^10.1.0",
"yaml": "^2.8.3"
},
"devDependencies": {
"@antfu/eslint-config": "^7.7.3",
"c8": "^11.0.0",
"eslint": "^9.39.4",
"eslint-plugin-format": "^2.0.1"
}
}