-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy pathpackage.json
52 lines (52 loc) · 908 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "svgexport",
"version": "0.4.1",
"description": "Node.js module and command-line tool for exporting SVG to PNG and JPEG.",
"author": "Ali Shakiba",
"contributors": [
"Michael Heerklotz"
],
"keywords": [
"svg",
"export",
"rasterize",
"converter",
"png",
"jpeg",
"jpg",
"cli",
"command line",
"inkscape",
"illustrator",
"coreldraw"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/shakiba/svgexport.git"
},
"dependencies": {
"async": "^3.2.0",
"puppeteer": "^3.0.2"
},
"main": "index.js",
"bin": {
"svgexport": "bin/index.js"
},
"devDependencies": {
"mocha": "*",
"expect.js": "*"
},
"scripts": {
"test": "mocha"
},
"files": [
"bin/",
"test/",
"package.json",
"README.md",
"render.js",
"resize.js",
"index.js"
]
}