-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.11 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
{
"name": "@uscreen.de/versionize",
"version": "0.7.1",
"description": "opinionated package versioner",
"main": "src/index.js",
"type": "module",
"homepage": "https://github.com/uscreen/versionize",
"repository": {
"type": "git",
"url": "git+https://github.com/uscreen/versionize.git"
},
"bin": {
"versionize": "./bin/cli.js"
},
"author": "Martin Herting <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=18"
},
"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/"
],
"devDependencies": {
"@uscreen.de/eslint-config-prettystandard-node": "^0.2.10",
"c8": "^10.1.2",
"husky": ">=8.0.2",
"lint-staged": ">=13.0.3",
"tap": "^16.3.2",
"tempy": "^3.0.0"
},
"dependencies": {
"chalk": "^5.2.0",
"commander": "^13.0.0",
"pkg-dir": "^8.0.0",
"semver": "^7.5.1"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}