forked from svg-sprite/gulp-svg-sprite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 2.36 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
105
106
107
108
109
110
{
"name": "gulp-svg-sprite",
"description": "SVG sprites & stacks galore — Gulp plugin wrapping around svg-sprite that reads in a bunch of SVG files, optimizes them and creates SVG sprites and CSS resources in various flavours",
"version": "1.5.0",
"homepage": "https://github.com/jkphl/gulp-svg-sprite",
"author": "Joschi Kuphal <[email protected]> (https://jkphl.is)",
"repository": {
"type": "git",
"url": "https://github.com/jkphl/gulp-svg-sprite.git"
},
"bugs": {
"url": "https://github.com/jkphl/gulp-svg-sprite/issues"
},
"license": "MIT",
"engines": {
"node": ">=12"
},
"scripts": {
"lint": "xo",
"fix": "xo --fix",
"mocha": "_mocha",
"test": "gulp && npm run mocha"
},
"files": [
"index.js"
],
"dependencies": {
"plugin-error": "^1.0.1",
"svg-sprite": "github:CarnegieHall/svg-sprite"
},
"devDependencies": {
"glob": "^7.2.3",
"gulp": "^4.0.2",
"looks-same": "^7.3.0",
"mocha": "^9.2.2",
"svg2png": "^4.1.1",
"vinyl": "^2.2.1",
"xo": "^0.50.0"
},
"keywords": [
"gulpplugin",
"icon",
"icons",
"svg",
"png",
"sprite",
"spritesheet",
"stack",
"generator",
"css",
"sass",
"less",
"stylus",
"stylesheet",
"inline",
"html",
"vector",
"rwd",
"retina",
"mustache"
],
"mocha": {
"check-leaks": true,
"throw-deprecation": true,
"timeout": 5000,
"trace-deprecation": true,
"trace-warnings": true,
"use_strict": true
},
"xo": {
"space": 4,
"rules": {
"arrow-body-style": "off",
"capitalized-comments": "off",
"camelcase": "off",
"comma-dangle": [
"error",
"never"
],
"no-negated-condition": "off",
"object-curly-spacing": [
"error",
"always"
],
"operator-linebreak": [
"error",
"after"
],
"promise/prefer-await-to-then": "off",
"prefer-template": "error",
"space-before-function-paren": [
"error",
"never"
],
"spaced-comment": "off",
"unicorn/catch-error-name": "off",
"unicorn/filename-case": "off",
"unicorn/prefer-module": "off",
"unicorn/prevent-abbreviations": "off"
},
"overrides": [
{
"files": "test/**/*.js",
"envs": [
"mocha"
]
}
]
}
}