forked from richard-clark/gulp-recolor-svg
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 819 Bytes
/
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
{
"author": "Gavin King",
"version": "1.0.0",
"main": "./lib/RecolorSvg.js",
"name": "gulp-svg-recolor",
"repository": "plumpnation/gulp-svg-recolor",
"description": "Gulp plugin for recoloring SVGs",
"license": "MIT",
"dependencies": {
"cheerio": "^0.22.0",
"color": "^2.0.1",
"color-convert": "^1.3.1",
"css": "^2.2.1",
"through2": "^2.0.1",
"vinyl": "^2.1.0"
},
"keywords": [
"color",
"gulp",
"gulpplugin",
"recolor",
"svg"
],
"scripts": {
"clean": "rm -r lib/",
"build": "coffee -o lib/ -c src/",
"test": "mocha --compilers coffee:coffee-script/register test/*Spec.coffee"
},
"devDependencies": {
"chai": "^4.1.2",
"coffee-script": "^1.10.0",
"event-stream": "^3.3.3",
"gulp": "^3.9.1",
"mocha": "^4.0.1"
}
}