-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.24 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
{
"name": "@uscreen.de/dev-repo",
"version": "0.9.0",
"description": "cli to manage dev repos",
"main": "index.js",
"type": "module",
"bin": {
"repo": "./bin/cli.js",
"repo-list": "./bin/cli-list.js",
"repo-install": "./bin/cli-install.js",
"repo-run": "./bin/cli-run.js",
"repo-pull": "./bin/cli-pull.js"
},
"homepage": "https://github.com/uscreen/dev-repo",
"repository": {
"type": "git",
"url": "git+https://github.com/uscreen/dev-repo.git"
},
"author": "Marcus Spiegel <[email protected]>",
"license": "MIT",
"scripts": {
"lint": "eslint '**/*.js' --fix",
"test": "c8 tap",
"test:cov": "c8 --reporter=html --reporter=text tap",
"test:ci": "c8 --reporter=lcovonly tap",
"prepare": "husky install"
},
"engines": {
"node": ">=16"
},
"files": [
"bin/",
"src/"
],
"dependencies": {
"commander": "^11.0.0",
"execa": "^8.0.1",
"fs-extra": "^11.1.0",
"read-pkg-up": "^10.0.0",
"write-pkg": "^6.0.0"
},
"devDependencies": {
"@uscreen.de/eslint-config-prettystandard-node": "^0.2.10",
"c8": "^8.0.0",
"husky": ">=8.0.1",
"lint-staged": ">=13.0.3",
"tap": "^16.3.0"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}