-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
56 lines (56 loc) · 1.41 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
{
"name": "svg2vectordrawable",
"version": "2.9.1",
"description": "JavaScript module and command-line tools for convert SVG to Android vector drawable.",
"author": {
"name": "Ashung Hung",
"email": "Ashung.hung@gmail.com"
},
"homepage": "https://github.com/Ashung/svg2vectordrawable",
"license": "MIT",
"main": "./src/main.node.js",
"browser": "./src/main.browser.js",
"types": "./src/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": "^1.0.4",
"svg-path-bounds": "^1.0.1",
"svgo": "^2.8.0",
"svgpath": "^2.5.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Ashung/svg2vectordrawable.git"
},
"scripts": {
"browser": "npx webpack --mode=production",
"test": "npx jasmine test/*.js"
},
"engines": {
"node": ">=8.0.0"
},
"devDependencies": {
"jasmine": "^4.0.2",
"terser-webpack-plugin": "^5.3.1",
"webpack": "^5.71.0",
"webpack-cli": "^4.9.2"
}
}