-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.29 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
{
"name": "gulp-stacksvg",
"description": "The gulp plugin to combine svg files into one using the stack method.",
"version": "5.0.1",
"license": "MIT",
"author": {
"name": "Sergey Artemov",
"email": "[email protected]"
},
"homepage": "https://github.com/firefoxic/gulp-stacksvg#readme",
"bugs": {
"url": "https://github.com/firefoxic/gulp-stacksvg/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/firefoxic/gulp-stacksvg.git"
},
"type": "module",
"exports": "./lib/index.js",
"files": [
"./lib/"
],
"engines": {
"node": "^20.12 || >=22.11"
},
"packageManager": "[email protected]",
"dependencies": {
"node-html-parser": "^6.1.13",
"plugin-error": "^2.0.1",
"vinyl": "^3.0.0"
},
"scripts": {
"prepare": "git config core.hooksPath .git-hooks || true",
"lint": "eslint",
"test": "node --test",
"pretest": "pnpm lint",
"preversion": "pnpm test",
"version": "update-changelog",
"postversion": "pnpm publish --provenance --access public --no-git-checks",
"postpublish": "git push --follow-tags"
},
"devDependencies": {
"@firefoxic/eslint-config": "^4.0.0",
"@firefoxic/update-changelog": "^1.0.0",
"eslint": "^9.13.0",
"gulp": "^5.0.0"
},
"keywords": [
"gulp",
"gulpplugin",
"svg",
"icon",
"sprite",
"stack",
"vector"
]
}