-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.5 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
{
"name": "@uscreen.de/dev-service",
"version": "0.12.11",
"description": "cli to manage services in dev repos",
"main": "index.js",
"type": "module",
"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"
},
"homepage": "https://github.com/uscreen/dev-service",
"repository": {
"type": "git",
"url": "git+https://github.com/uscreen/dev-service.git"
},
"author": "Martin Herting <herting@uscreen.de>",
"license": "MIT",
"engines": {
"node": ">=16"
},
"scripts": {
"test": "c8 tap",
"test:cov": "c8 --reporter=html --reporter=text tap",
"test:ci": "c8 --reporter=lcovonly tap",
"prepare": "husky install"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"files": [
"bin/",
"src/",
"templates"
],
"devDependencies": {
"@uscreen.de/eslint-config-prettystandard-node": "^0.2.10",
"c8": "^9.0.0",
"husky": ">=8.0.2",
"lint-staged": ">=13.0.3",
"tap": "^16.3.2"
},
"dependencies": {
"commander": "^12.0.0",
"fs-extra": "^11.1.0",
"nanoid": "^5.0.2",
"parse-json": "^8.0.1",
"read-pkg": "^9.0.0",
"yaml": "^2.1.3"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}