-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.87 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.87 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@bifravst/eslint-config-typescript",
"version": "0.0.0-development",
"description": "ESLint config for all our projects.",
"type": "module",
"main": "eslint.config.js",
"repository": {
"type": "git",
"url": "git+https://github.com/bifravst/eslint-config-typescript.git"
},
"bugs": {
"url": "https://github.com/bifravst/eslint-config-typescript/issues"
},
"homepage": "https://github.com/bifravst/eslint-config-typescript#readme",
"keywords": [
"eslint",
"typescript",
"typescript-eslint"
],
"author": "Nordic Semiconductor ASA | nordicsemi.no",
"license": "BSD-3-Clause",
"dependencies": {
"@eslint/js": "10.0.1",
"@stylistic/eslint-plugin": "5.10.0",
"@typescript-eslint/eslint-plugin": "8.60.0",
"eslint": "10.4.1",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-unicorn": "64.0.0",
"typescript-eslint": "8.60.0"
},
"devDependencies": {
"@bifravst/prettier-config": "1.1.17",
"@commitlint/config-conventional": "21.0.2",
"commitlint": "21.0.2",
"husky": "9.1.7",
"lint-staged": "17.0.7"
},
"lint-staged": {
"*.{yml,md,js,json}": [
"prettier --write"
]
},
"engines": {
"node": ">=24",
"npm": ">=11"
},
"release": {
"branches": [
"saga"
],
"remoteTags": true,
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
[
"@semantic-release/github",
{
"successCommentCondition": false,
"failCommentCondition": false
}
]
]
},
"publishConfig": {
"access": "public"
},
"files": [
"index.js",
"LICENSE",
"README.md"
],
"scripts": {
"test": "eslint *.ts",
"prepare": "husky"
},
"prettier": "@bifravst/prettier-config"
}