-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
104 lines (104 loc) · 2.21 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": "grunt-svg-sprite",
"description": "SVG sprites & stacks galore — Grunt 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": "2.0.2",
"homepage": "https://github.com/svg-sprite/grunt-svg-sprite",
"author": "Joschi Kuphal <[email protected]> (https://jkphl.is)",
"repository": {
"type": "git",
"url": "git+https://github.com/svg-sprite/grunt-svg-sprite.git"
},
"bugs": {
"url": "https://github.com/svg-sprite/grunt-svg-sprite/issues"
},
"license": "MIT",
"engines": {
"node": ">=12"
},
"files": [
"tasks"
],
"scripts": {
"lint": "xo",
"fix": "xo --fix",
"mocha": "_mocha",
"test": "grunt test && npm run mocha"
},
"peerDependencies": {
"grunt": ">=1.0.1"
},
"dependencies": {
"figures": "^3.2.0",
"picocolors": "^1.0.0",
"prettysize": "^2.0.0",
"svg-sprite": "^2.0.3"
},
"devDependencies": {
"grunt": "^1.6.1",
"grunt-contrib-clean": "^2.0.1",
"looks-same": "^7.3.0",
"mocha": "^10.3.0",
"svg2png": "^4.1.1",
"xo": "^0.52.4"
},
"keywords": [
"gruntplugin",
"icon",
"icons",
"svg",
"png",
"sprite",
"spritesheet",
"stack",
"generator",
"css",
"sass",
"less",
"stylus",
"stylesheet",
"inline",
"html",
"vector",
"rwd",
"retina",
"mustache"
],
"xo": {
"space": 4,
"rules": {
"arrow-body-style": "off",
"capitalized-comments": "off",
"camelcase": "off",
"comma-dangle": [
"error",
"never"
],
"object-curly-spacing": [
"error",
"always"
],
"operator-linebreak": [
"error",
"after"
],
"prefer-template": "error",
"space-before-function-paren": [
"error",
"never"
],
"spaced-comment": "off",
"unicorn/filename-case": "off",
"unicorn/prefer-module": "off",
"unicorn/prefer-string-slice": "off",
"unicorn/prevent-abbreviations": "off"
},
"overrides": [
{
"files": "test/**/*.js",
"envs": [
"mocha"
]
}
]
}
}