forked from svg-sprite/svg-sprite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.14 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
{
"name": "svg-sprite",
"version": "1.3.6",
"author": "Joschi Kuphal <joschi@kuphal.net> (https://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"
},
"license": "MIT",
"engines": {
"node": ">= 4.0"
},
"main": "lib/svg-sprite.js",
"bin": {
"svg-sprite": "./bin/svg-sprite.js"
},
"directories": {
"test": "test"
},
"files": [
"bin",
"docs",
"lib",
"tmpl",
"CHANGELOG.md"
],
"scripts": {
"test": "istanbul test _mocha --report html -- test/*.js --reporter spec",
"lint": "jshint bin && jshint lib && jshint test",
"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.1",
"async": "^2.0.1",
"lodash": "^4.15.0",
"lodash.pluck": "^3.1.2",
"glob": "^7.0.6",
"xmldom": "0.1.22",
"xpath": "^0.0.23",
"vinyl": "^1.2.0",
"svgo": "0.7.0",
"cssom": "^0.3.1",
"css-selector-parser": "^1.1.0",
"phantomjs-prebuilt": "^2.1.12",
"cssmin": "^0.4.3",
"mustache": "^2.2.1",
"js-yaml": "^3.6.1",
"yargs": "^5.0.0",
"winston": "^2.2.0",
"prettysize": "^0.0.3"
},
"devDependencies": {
"mocha": "",
"coveralls": "*",
"mocha-lcov-reporter": "*",
"istanbul": "*",
"should": "",
"rimraf": "",
"vinyl-fs": "^2.4.3",
"svg2png": "jkphl/svg2png",
"image-diff": "^1.6.3",
"node-sass": "^3.8.0",
"less": "^2.7.1",
"stylus": "^0.54.5",
"jshint": "^2.9.3",
"pn": "^1.0.0"
},
"keywords": [
"icon",
"icons",
"svg",
"png",
"sprite",
"spritesheet",
"stack",
"generator",
"css",
"sass",
"less",
"stylus",
"stylesheet",
"inline",
"html",
"vector",
"rwd",
"retina",
"mustache",
"gulpfriendly"
]
}