-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 2.72 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 2.72 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "svglint",
"version": "4.2.1",
"description": "Linter for SVGs",
"type": "module",
"exports": {
".": {
"module": "./src/svglint.js",
"import": "./src/svglint.js",
"require": "./src/svglint.cjs",
"default": "./src/svglint.cjs"
}
},
"bin": {
"svglint": "./bin/cli.js"
},
"keywords": [
"svg",
"vector",
"lint",
"linting",
"linter"
],
"author": "birjolaxew",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/simple-icons/svglint"
},
"bugs": {
"url": "https://github.com/simple-icons/svglint/issues"
},
"scripts": {
"lint": "npm run lint:xo && npm run lint:markdown",
"lint:xo": "xo",
"lint:markdown": "markdownlint-cli2 .",
"format": "npm run format:xo && npm run format:markdown",
"format:xo": "xo --fix",
"format:markdown": "markdownlint-cli2 --fix .",
"prepublishOnly": "rollup -c",
"test": "mocha --timeout 10000"
},
"dependencies": {
"ansi-regex": "^6.1.0",
"chalk": "^5.3.0",
"cheerio": "^1.0.0",
"fast-xml-parser": "^5.3.7",
"glob": "^11.0.2",
"htmlparser2": "^3.9.1",
"log-update": "^6.1.0",
"meow": "^13.2.0",
"strip-ansi": "^7.1.0"
},
"devDependencies": {
"@rollup/plugin-dynamic-import-vars": "2.1.5",
"@semantic-release/git": "10.0.1",
"commitizen": "4.3.1",
"cz-conventional-changelog": "3.3.0",
"execa": "9.6.0",
"expect": "27.5.1",
"markdownlint-cli2": "0.18.1",
"mocha": "11.5.0",
"rollup": "4.27.4",
"semantic-release": "24.2.5",
"xo": "1.0.5"
},
"engines": {
"node": ">=20.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"branches": [
"master"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "angular",
"releaseRules": [
{
"type": "docs",
"release": "patch"
},
{
"type": "chore",
"release": "patch"
},
{
"type": "breaking",
"release": "major"
}
],
"parserOpts": {
"noteKeywords": [
"BREAKING CHANGE",
"BREAKING CHANGES"
]
}
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github",
[
"@semantic-release/git",
{
"assets": [
"package.json",
"package-lock.json"
],
"message": "Bump version to ${nextRelease.version} [skip ci]"
}
]
]
}
}