-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
101 lines (101 loc) · 2.37 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
{
"name": "svg-symbol-sprite",
"version": "1.5.2",
"description": "A script to generate a symbol sprite from SVG files",
"keywords": [
"Sprite",
"SVG Sprite",
"SVG Symbol",
"Image sprite",
"SVG Sprite Generator",
"Image sprite Generator",
"SVG Symbol Sprite Generator"
],
"homepage": "https://atanas.info/portfolio/open-source/svg-symbol-sprite",
"bugs": {
"url": "https://github.com/scriptex/svg-symbol-sprite/issues",
"email": "[email protected]"
},
"license": "MIT",
"author": "Atanas Atanasov <[email protected]> (https://atanas.info)",
"funding": "https://github.com/sponsors/scriptex",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "github:scriptex/svg-symbol-sprite"
},
"scripts": {
"build": "tsc --skipLibCheck",
"test": "ts-node test/index.ts",
"release-minor": "release-it minor --ci",
"release-patch": "release-it patch --ci",
"release-major": "release-it major --ci",
"changelog-local": "npx auto-changelog"
},
"bin": {
"svg-symbol-sprite": "dist/index.js"
},
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"cheerio": "1.0.0",
"commander": "13.0.0",
"svgo": "^3.0.0"
},
"devDependencies": {
"@types/cheerio": "0.22.35",
"@types/csso": "5.0.4",
"@types/node": "22.10.7",
"@types/svg-parser": "2.0.6",
"@types/tape": "5.8.1",
"release-it": "18.1.1",
"svg-parser": "2.0.4",
"tape": "5.9.0",
"ts-node": "10.9.2",
"tslib": "2.8.1",
"typescript": "5.7.3"
},
"peerDependencies": {
"cheerio": "*",
"commander": "^12 || ^ 13",
"svgo": "^3.0.0"
},
"release-it": {
"hooks": {
"after:release": "yarn changelog-local && git add CHANGELOG.md && git commit -m \"Update CHANGELOG.md with the latest changes\" --no-verify && git push"
},
"use": "pkg.version",
"git": {
"changelog": "git log --pretty=format:\"* %s (%h)\" ${from}...${to}",
"requireCleanWorkingDir": true,
"requireBranch": false,
"requireUpstream": false,
"requireCommits": false,
"addUntrackedFiles": false,
"commit": true,
"commitMessage": "Release ${version}",
"commitArgs": [
"--no-verify"
],
"tag": true,
"tagName": "${version}",
"tagAnnotation": "Release ${version}",
"tagArgs": [],
"push": true,
"pushArgs": [
"--follow-tags"
],
"pushRepo": ""
},
"github": {
"release": false
},
"gitlab": {
"release": false
},
"npm": {
"publish": false
}
}
}