-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
104 lines (104 loc) · 2.22 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
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
{
"name": "svglint",
"version": "3.1.0",
"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": "xo",
"prepublishOnly": "rollup -c",
"test": "mocha --timeout 10000"
},
"dependencies": {
"ansi-regex": "^6.0.1",
"chalk": "^5.0.0",
"cheerio": "^1.0.0-rc.9",
"fast-xml-parser": "^4.2.4",
"glob": "^7.1.2",
"htmlparser2": "^3.9.1",
"log-update": "^5.0.0",
"meow": "^10.1.1",
"strip-ansi": "^7.0.0"
},
"devDependencies": {
"@rollup/plugin-dynamic-import-vars": "^2.1.3",
"@semantic-release/git": "9.0.1",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"execa": "^6.0.0",
"expect": "^27.5.1",
"mocha": "^9.1.3",
"rollup": "^4.22.4",
"xo": "^0.58.0"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || ^16.0.0 || >=18.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"
}
]
}
],
"@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]"
}
]
]
}
}