-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.14 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.14 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
{
"name": "@shiftcode/publish-helper",
"version": "6.0.0",
"description": "scripts for conventional (pre)releases",
"repository": "https://github.com/shiftcode/sc-commons-public",
"license": "MIT",
"author": "shiftcode GmbH <team@shiftcode.ch>",
"type": "module",
"bin": {
"prepare-dist": "./dist/prepare-dist.js",
"publish-lib": "./dist/publish-lib.js"
},
"scripts": {
"build": "rm -rf ./dist && tsc",
"format": "prettier --write .",
"lint": "eslint --fix --cache .",
"lint:ci": "eslint .",
"prepublish": "node ./dist/prepare-dist.js",
"test": "vitest --cache --run",
"test:ci": "vitest --no-cache --run && tsc -p ./tsconfig.spec.json",
"test:watch": "vitest --cache"
},
"dependencies": {
"conventional-changelog-angular": "^8.0.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@shiftcode/branch-utilities": "^6.0.0",
"@types/yargs": "^17.0.32"
},
"peerDependencies": {
"@shiftcode/branch-utilities": "^6.0.0 || ^6.0.0-pr254",
"lerna": "^9.0.3",
"tslib": "^2.3.0"
},
"engines": {
"node": ">=24.10.2"
},
"publishConfig": {
"directory": "dist"
}
}