forked from Ashung/svg2vectordrawable
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.24 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
{
"name": "svg2vectordrawable",
"version": "2.6.23",
"description": "Node.js module and command-line tools for convert SVG to Android vector drawable.",
"author": {
"name": "Ashung Hung",
"email": "[email protected]"
},
"homepage": "https://github.com/Ashung/svg2vectordrawable",
"license": "MIT",
"main": "./lib/svg-to-vectordrawable.js",
"types": "./lib/svg-to-vectordrawable.d.ts",
"bin": {
"s2v": "./bin/svg2vectordrawable",
"svg2avd": "./bin/svg2vectordrawable",
"svg2android": "./bin/svg2vectordrawable",
"svg2vector": "./bin/svg2vectordrawable",
"svg2drawable": "./bin/svg2vectordrawable",
"svg2vectordrawable": "./bin/svg2vectordrawable"
},
"keywords": [
"svg",
"android",
"vector drawable",
"s2v",
"svg2avd",
"svg2vectordrawable",
"svg2drawable",
"svg2android"
],
"dependencies": {
"coa": "^2.0.2",
"mkdirp": "^0.5.1",
"svg-path-bounds": "^1.0.1",
"svgo": "^1.3.0",
"svgpath": "^2.2.2"
},
"repository": {
"type": "git",
"url": "https://github.com/Ashung/svg2vectordrawable.git"
},
"scripts": {
"test": "npx jasmine test/*.js"
},
"engines": {
"node": ">=8.0.0"
},
"devDependencies": {
"jasmine": "^3.5.0"
}
}