forked from akoenig/gulp-svg2png
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
60 lines (60 loc) · 1.37 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
{
"name": "gulp-svg2png-update",
"version": "2.2.1",
"description": "A gulp plugin for converting SVGs to PNGs.",
"author": "André König <[email protected]>",
"license": "MIT",
"main": "index.js",
"scripts": {
"dev": "tsc --watch",
"demo": "gulp demo",
"compile": "tsc",
"build": "npm i && npm run compile",
"mocha": "mocha ./specs/*.spec.js",
"test": "npm run build && npm run mocha"
},
"engines": {
"node": ">=6.0.0"
},
"repository": {
"type": "git",
"url": "[email protected]:ryanwholey/gulp-svg2png.git"
},
"keywords": [
"gulpplugin",
"svg",
"png",
"converter",
"svg2png"
],
"bugs": {
"url": "https://github.com/ryanwholey/gulp-svg2png/issues"
},
"homepage": "https://github.com/ryanwholey/gulp-svg2png",
"dependencies": {
"map-stream": "0.0.6",
"map-stream-limit": "^1.1.0"
},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/chalk": "^0.4.31",
"@types/fancy-log": "^1.3.0",
"@types/gulp-util": "^3.0.30",
"@types/mocha": "^2.2.38",
"@types/node": "^7.0.4",
"@types/plugin-error": "^0.1.0",
"@types/sinon": "^7.0.11",
"@types/svg2png": "^4.1.0",
"@types/through2": "^2.0.32",
"@types/vinyl": "^2.0.0",
"chai": "^3.0.0",
"fancy-log": "^1.3.2",
"gulp": "^3.9.1",
"imagesize": "^1.0.0",
"mocha": "^2.2.5",
"plugin-error": "^1.0.1",
"svg2png": "^4.1.1",
"typescript": "^2.1.5",
"vinyl": "^2.2.0"
}
}