-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.55 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
{
"name": "semantic-release-config-kuzzle",
"version": "1.1.2",
"description": "The semantic-release shareable config we use for Kuzzle projects.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"clean": "rimraf dist",
"lint": "eslint",
"lint:fix": "eslint --fix",
"prepare": "husky",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kuzzleio/semantic-release-config-kuzzle.git"
},
"author": "The Kuzzle Team <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/kuzzleio/semantic-release-config-kuzzle/issues"
},
"homepage": "https://github.com/kuzzleio/semantic-release-config-kuzzle#readme",
"dependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"conventional-changelog-conventionalcommits": "^7.0.2",
"semantic-release-slack-bot": "^4.0.2"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@types/node": "^22.10.6",
"@types/semantic-release": "^20.0.6",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.18.0",
"eslint-plugin-kuzzle": "^1.0.0-eslint-9.6",
"husky": "^9.1.7",
"rimraf": "^6.0.1",
"semantic-release": "^23.1.1",
"typescript": "^5.7.3"
},
"peerDependencies": {
"semantic-release": "^23.1.1"
},
"files": [
"CHANGELOG.md",
"dist/index.js",
"dist/index.js.map",
"dist/index.d.ts"
]
}