forked from dhoulb/multi-semantic-release
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.44 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.44 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@payfit/multi-semantic-release",
"author": "PayFit",
"version": "0.0.0-development",
"license": "0BSD",
"engines": {
"node": ">=20.8.1",
"yarn": ">=1.0.0"
},
"type": "module",
"exports": "./dist/lib/multiSemanticRelease.js",
"bin": {
"multi-semantic-release": "./dist/bin/cli.js"
},
"files": [
"README.md",
"dist"
],
"scripts": {
"build": "tsc -p tsconfig-build.json",
"format:check": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint --fix ./",
"test": "vitest run",
"test:ci": "GITHUB_REF=master GITHUB_EVENT_NAME=merge GITHUB_ACTIONS=true yarn test",
"pre-commit": "lint-staged",
"prepare": "husky install",
"prepublishOnly": "yarn build",
"release": "semantic-release"
},
"dependencies": {
"@manypkg/get-packages": "^1.1.1",
"async-mutex": "^0.5.0",
"batching-toposort": "^1.2.0",
"blork": "^9.3.0",
"cosmiconfig": "^9.0.0",
"debug": "^4.3.2",
"detect-indent": "^7.0.0",
"detect-newline": "^4.0.0",
"execa": "^8.0.0",
"git-log-parser": "^1.2.0",
"globby": "^16.0.0",
"lodash-es": "^4.17.21",
"meow": "^14.0.0",
"promise-events": "^0.2.4",
"semantic-release": "24.2.9",
"semver": "^7.3.5",
"signale": "^1.4.0",
"stream-buffers": "^3.0.2"
},
"devDependencies": {
"@commitlint/config-conventional": "20.5.0",
"@schemastore/package": "1.0.3",
"@types/cosmiconfig": "6.0.3",
"@types/debug": "4.1.13",
"@types/execa": "2.0.2",
"@types/lodash-es": "4.17.12",
"@types/node": "24.12.2",
"@types/semver": "7.7.1",
"@types/signale": "1.4.7",
"@types/stream-buffers": "3.0.8",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"commitlint": "20.5.0",
"coveralls": "3.1.1",
"eslint": "8.57.1",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-n": "16.6.2",
"eslint-plugin-security": "4.0.0",
"eslint-plugin-vitest": "0.4.1",
"eslint-plugin-vitest-globals": "1.6.1",
"file-url": "4.0.0",
"husky": "9.1.7",
"lint-staged": "16.4.0",
"prettier": "3.8.3",
"tempy": "3.2.0",
"ts-node": "10.9.2",
"typescript": "5.8.2",
"vitest": "4.1.4"
},
"repository": {
"type": "git",
"url": "https://github.com/PayFit/multi-semantic-release.git"
},
"bugs": {
"url": "https://github.com/PayFit/multi-semantic-release/issues"
}
}