forked from svg-sprite/svg-sprite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.03 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
{
"name": "svg-sprite",
"version": "1.1.0",
"author": {
"name": "Joschi Kuphal",
"email": "[email protected]",
"url": "http://jkphl.is"
},
"description": "SVG sprites & stacks galore — A low-level Node.js module that takes a bunch of SVG files, optimizes them and bakes them into SVG sprites of several types along with suitable stylesheet resources (e.g. CSS, Sass, LESS, Stylus, etc.)",
"homepage": "https://github.com/jkphl/svg-sprite",
"repository": {
"type": "git",
"url": "https://github.com/jkphl/svg-sprite.git"
},
"bugs": {
"url": "https://github.com/jkphl/svg-sprite/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/jkphl/svg-sprite/blob/master/LICENSE.txt"
}
],
"main": "lib/svg-sprite.js",
"bin": {
"svg-sprite": "./bin/svg-sprite.js"
},
"directories": {
"test": "test"
},
"scripts": {
"test": "istanbul test _mocha --report html -- test/*.js --reporter spec",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"dependencies": {
"mkdirp": "^0.5.0",
"async": "^0.9.0",
"lodash": "^3.6.0",
"glob": "^5.0.3",
"xmldom": "^0.1.19",
"xpath": "^0.0.9",
"vinyl": "^0.4.6",
"svgo": "0.5.0",
"cssom": "^0.3.0",
"css-selector-parser": "^1.0.4",
"phantomjs": "^1.9.16",
"cssmin": "^0.4.3",
"mustache": "^2.0.0",
"js-yaml": "^3.2.7",
"yargs": "^3.6.0",
"winston": "^0.9.0",
"prettysize": "^0.0.3"
},
"devDependencies": {
"mocha": "",
"coveralls": "*",
"mocha-lcov-reporter": "*",
"istanbul": "*",
"should": "",
"rimraf": "",
"vinyl-fs": "^1.0.0",
"svg2png": "^1.1.0",
"image-diff": "^1.0.1",
"node-sass": "^2.1.1",
"less": "^2.5.0",
"stylus": "^0.50.0"
},
"keywords": [
"icon",
"icons",
"svg",
"png",
"sprite",
"spritesheet",
"stack",
"generator",
"css",
"sass",
"less",
"stylus",
"stylesheet",
"inline",
"html",
"vector",
"rwd",
"retina",
"mustache",
"gulpfriendly"
]
}