-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
75 lines (75 loc) · 1.98 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
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
{
"name": "semantic-release-replace-plugin",
"version": "1.2.7",
"description": "Semantic Release Replace Plugin",
"keywords": [
"semantic-release",
"node",
"replace"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jpoehnelt/semantic-release-replace-plugin.git"
},
"license": "Apache-2.0",
"author": {
"name": "Justin Poehnelt",
"email": "[email protected]"
},
"type": "module",
"main": "./dist/index.js",
"exports": "./dist/index.js",
"files": [
"dist/*",
"LICENSE",
"README.md"
],
"scripts": {
"all": "npm run build && npm run lint && npm test && npm run docs",
"build": "tsc",
"docs": "rm -rf docs && typedoc src/index.ts",
"lint": "eslint src/**/*.ts",
"format": "npm run lint -- --fix",
"test": "tsc --noEmit && vitest --coverage",
"release": "semantic-release"
},
"dependencies": {
"jest-diff": "^29.6.0",
"lodash-es": "^4.17.21",
"replace-in-file": "^7.0.1"
},
"devDependencies": {
"@semantic-release/commit-analyzer": "^10.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.0.3",
"@semantic-release/npm": "^10.0.4",
"@semantic-release/release-notes-generator": "^11.0.4",
"@types/lodash-es": "^4.17.7",
"@types/node": "^20.4.0",
"@types/semantic-release": "^20.0.1",
"@types/tmp": "^0.2.3",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"@vitest/coverage-v8": "^0.33.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"semantic-release": "^21.0.7",
"fs-extra": "^11.1.1",
"prettier": "^2.8.8",
"tmp": "^0.2.1",
"typedoc": "^0.24.8",
"typedoc-plugin-markdown": "^3.15.3",
"typescript": "^5.1.6",
"vitest": "^0.33.0"
},
"engines": {
"node": ">=18"
},
"peerDependencies": {
"semantic-release": ">=20.1.0"
},
"publishConfig": {
"access": "public"
}
}