-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.85 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.85 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
{
"name": "semantic-release-replace-plugin",
"version": "1.2.7",
"description": "Semantic Release Replace Plugin v2",
"keywords": [
"semantic-release",
"node",
"replace"
],
"repository": "github:centralnicgroup-opensource/rtldev-middleware-semantic-release-replace-plugin.git",
"type": "module",
"main": "./dist/index.js",
"exports": "./dist/index.js",
"files": [
"dist/*",
"LICENSE",
"README.md"
],
"scripts": {
"all": "pnpm run build && pnpm run docs",
"build": "tsc",
"docs": "rm -rf docs && typedoc src/index.ts",
"lint": "prettier --write . --ignore-path .prettierignore && eslint",
"format": "eslint --fix",
"test": "tsc --noEmit && vitest --coverage",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage --run",
"ci": "pnpm run build && pnpm run test && pnpm run lint",
"prepublishOnly": "pnpm run build && pnpm run test",
"release": "semantic-release"
},
"dependencies": {
"replace-in-file": "^8.4.0",
"semantic-release": "^25.0.3"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^24.12.2",
"@types/tmp": "^0.2.6",
"@typescript-eslint/eslint-plugin": "^8.58.1",
"@typescript-eslint/parser": "^8.58.1",
"@vitest/coverage-v8": "^4.1.4",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"fs-extra": "^11.3.4",
"prettier": "^3.8.2",
"semantic-release-teams-notify-plugin": "github:centralnicgroup-opensource/rtldev-middleware-semantic-release-notify-plugin#v1.0.6",
"tmp": "^0.2.5",
"typedoc": "^0.28.18",
"typedoc-plugin-markdown": "^4.11.0",
"typescript": "^5.9.3",
"vitest": "^4.1.4"
},
"engines": {
"node": "^24.10.0"
},
"publishConfig": {
"access": "public"
}
}