-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.7 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
{
"name": "@bifravst/get-next-version-action",
"version": "0.0.0-development",
"description": "Determines the next release version for this repository",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/bifravst/get-next-version-action.git"
},
"bugs": {
"url": "https://github.com/bifravst/get-next-version-action/issues"
},
"homepage": "https://github.com/bifravst/get-next-version-action#readme",
"keywords": [
"nrf-asset-tracker",
"iot"
],
"author": "Nordic Semiconductor ASA | nordicsemi.no",
"license": "BSD-3-Clause",
"dependencies": {
"@semantic-release/commit-analyzer": "13.0.1",
"semantic-release": "24.2.1",
"stream-buffers": "3.0.3"
},
"devDependencies": {
"@bifravst/eslint-config-typescript": "6.1.20",
"@bifravst/from-env": "3.0.2",
"@bifravst/prettier-config": "1.1.4",
"@commitlint/config-conventional": "19.6.0",
"@types/node": "22.10.5",
"@types/semantic-release": "20.0.6",
"@types/stream-buffers": "3.0.7",
"@vercel/ncc": "0.38.3",
"husky": "9.1.7"
},
"lint-staged": {
"*.{md,json,yaml,yml}": [
"prettier --write"
],
"*.ts": [
"prettier --write",
"eslint"
]
},
"engines": {
"node": ">=22",
"npm": ">=10"
},
"release": {
"branches": [
"saga"
],
"remoteTags": true,
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/github",
{
"successCommentCondition": false,
"failTitle": false
}
]
]
},
"scripts": {
"prepare": "husky"
},
"prettier": "@bifravst/prettier-config"
}