-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.64 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
{
"name": "@immowelt/browserslist-config",
"version": "0.0.0",
"description": "Config to share target browsers between different immoweltGroup front-ends",
"author": "Immonet Dev Team <pandora@immonet.de> (https://www.immowelt.de)",
"license": "MIT",
"private": false,
"main": "src/index.js",
"repository": "https://github.com/ImmoweltGroup/browserslist-config.git",
"homepage": "https://github.com/ImmoweltGroup/browserslist-config#readme",
"bugs": {
"url": "https://github.com/ImmoweltGroup/browserslist-config/issues"
},
"scripts": {
"test": "jest",
"lint": "eslint src",
"release": "semantic-release"
},
"devDependencies": {
"@immowelt/eslint-config-immowelt-base": "3.3.0",
"@immowelt/jest-preset-node": "2.1.0",
"browserslist": "4.23.0",
"eslint": "8.57.0",
"eslint-plugin-compat": "^4.2.0",
"eslint-plugin-import": "^2.29.1",
"jest": "29.7.0",
"semantic-release": "23.0.4"
},
"engines": {
"node": ">=16.0.0",
"yarn": ">=1.22.0"
},
"keywords": [
"browserslist",
"immowelt",
"config",
"immonet"
],
"files": [
"src/index.js"
],
"publishConfig": {
"access": "public"
},
"release": {
"analyzeCommits": {
"releaseRules": [
{
"type": "BREAKING",
"release": "major"
},
{
"type": "FEATURE",
"release": "minor"
},
{
"type": "PATCH",
"release": "patch"
},
{
"type": "BUGFIX",
"release": "patch"
}
]
},
"branch": "master"
},
"volta": {
"node": "20.11.1",
"yarn": "1.22.21"
}
}