-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
48 lines (48 loc) · 1.31 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
{
"name": "@terrestris/maven-semantic-release",
"version": "3.1.0",
"description": "a very simple maven plugin for semantic release",
"main": "index.js",
"scripts": {
"check": "npm run typecheck && npm test",
"doc": "jsdoc2md src/plugin-config.js | ./replace-docs.sh",
"test": "jest",
"typecheck": "tsc --pretty --noEmit true --emitDeclarationOnly false",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/terrestris/maven-semantic-release.git"
},
"author": "terrestris GmbH & Co. KG <info@terrestris.de>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/terrestris/maven-semantic-release/issues"
},
"homepage": "https://github.com/terrestris/maven-semantic-release#readme",
"dependencies": {
"@semantic-release/error": "^3.0.0",
"@semantic-release/git": "^10.0.1",
"execa": "^5.1.1",
"glob": "^9.2.1"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.14.10",
"@types/semantic-release__error": "^3.0.3",
"jest": "^29.7.0",
"jsdoc-to-markdown": "^8.0.0",
"release-it": "^16.1.5",
"typescript": "^5.5.3"
},
"publishConfig": {
"access": "public"
},
"files": [
"src/**/*",
"LICENSE",
"README.md",
"index.js",
"package.json"
]
}