-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.33 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
{
"name": "@sladg/release-utils",
"version": "2.0.1",
"description": "Simple set of npx commands to automate git flow.",
"repository": {
"type": "git",
"url": "https://github.com/sladg/release-utils"
},
"license": "MIT",
"author": "Jan Soukup <jan@ssoukup.com>",
"bin": {
"utils": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"prebuild": "rm -rf dist",
"build": "tsup lib/index.ts --shims",
"commit": "node ./dist/index.js commit",
"lint:check": "eslint --ext .ts . && tsc --noEmit",
"lint:fix": "eslint --ext .ts . --fix",
"test": "vitest run",
"test:watch": "vitest",
"release": "node ./dist/index.js shipit --gitUser @sladg --gitEmail jan@ssoukup.com --changelog"
},
"dependencies": {
"commitizen": "^4.3.0",
"cz-emoji-conventional": "^1.0.2"
},
"devDependencies": {
"@sladg/eslint-config-base": "^1.4.1",
"@types/archiver": "^5.3.2",
"@types/node": "^20.19.41",
"@types/semver": "^7.5.2",
"archiver": "^6.0.1",
"commander": "^11.0.0",
"semver": "^7.5.4",
"semver-regex": "^4.0.5",
"simple-git": "^3.19.1",
"smol-toml": "^1.6.1",
"tinyglobby": "^0.2.17",
"tsup": "^7.2.0",
"typescript": "5.1",
"vitest": "^4.1.8",
"yaml": "^2.9.0"
},
"engines": {
"node": ">=20"
},
"engineStrict": true
}