-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
42 lines (42 loc) · 954 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
{
"name": "vector-drawable-svg",
"version": "1.1.2",
"description": "Convert Androd VectorDrawable to SVG",
"main": "src/vector-drawable-svg.js",
"bin": {
"vd2svg": "bin/vd2svg.js"
},
"files": [
"bin",
"src"
],
"scripts": {
"test": "jest",
"test:watch": "jest --watchAll"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seanghay/vector-drawable-svg.git"
},
"keywords": [
"android",
"vectordrawable",
"svg"
],
"author": "Seanghay Yath <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/seanghay/vector-drawable-svg/issues"
},
"homepage": "https://github.com/seanghay/vector-drawable-svg#readme",
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/xmldom": "^0.1.31",
"dom-compare": "^0.1.1",
"jest": "^29.5.0"
},
"dependencies": {
"@xmldom/xmldom": "^0.8.6",
"xml-formatter": "^3.3.2"
}
}