-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
52 lines (52 loc) · 1.15 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
{
"name": "gulp-svg2png",
"version": "2.0.2",
"description": "A gulp plugin for converting SVGs to PNGs.",
"author": "André König <andre.koenig@posteo.de>",
"license": "MIT",
"main": "index.js",
"scripts": {
"dev": "tsc --watch",
"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 || ^7.0.0"
},
"repository": {
"type": "git",
"url": "git@github.com:akoenig/gulp-svg2png.git"
},
"keywords": [
"gulpplugin",
"svg",
"png",
"converter",
"svg2png"
],
"bugs": {
"url": "https://github.com/akoenig/gulp-svg2png/issues"
},
"homepage": "https://github.com/akoenig/gulp-svg2png",
"dependencies": {
"gulp-util": "^3.0.7",
"map-stream": "0.0.6",
"map-stream-limit": "^1.1.0",
"svg2png": "^3.0.0"
},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/chalk": "^0.4.31",
"@types/gulp-util": "^3.0.30",
"@types/mocha": "^2.2.38",
"@types/node": "^7.0.4",
"@types/through2": "^2.0.32",
"@types/vinyl": "^2.0.0",
"chai": "^3.0.0",
"imagesize": "^1.0.0",
"mocha": "^2.2.5",
"typescript": "^2.1.5"
}
}