forked from uscreen/dev-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.63 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.11.20",
"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": "https://github.com:uscreen/dev-service.git"
},
"author": "Martin Herting <herting@uscreen.de>",
"license": "MIT",
"engines": {
"node": "^14.13 || >=15"
},
"scripts": {
"test": "c8 --all tap --no-coverage test/**/*.test.js",
"test:cov": "c8 --all --reporter html tap --no-coverage test/**/*.test.js && open coverage/index.html",
"test:ci": "c8 --all --reporter text-summary tap --no-coverage test/**/*.test.js",
"prepare": "husky install"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"files": [
"bin/",
"src/",
"templates"
],
"devDependencies": {
"@uscreen.de/eslint-config-prettystandard-node": "^0.2.10",
"husky": ">=6",
"lint-staged": ">=13.0.3",
"tap": "^16.3.0"
},
"dependencies": {
"c8": "^7.12.0",
"commander": "^9.4.0",
"fs-extra": "^10.0.1",
"nanoid": "^4.0.0",
"parse-json": "^6.0.2",
"read-pkg": "^7.1.0",
"yaml": "^2.1.1"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}