This repository has been archived by the owner on Sep 16, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.54 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
57
58
59
60
{
"name": "svg-to-swiftui-core",
"version": "0.2.7",
"description": "SVG to SwiftUI Shape converter core package. Will transform the raw SVG code into SwiftUI Shape via the JavaScript API.",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"files": [
"build/src"
],
"license": "MIT",
"keywords": [
"svg",
"swiftui",
"transpiler",
"swift",
"converter"
],
"author": {
"name": "Antoni Silvestrovic",
"email": "[email protected]",
"url": "https://antoni.ai"
},
"repository": {
"type": "git",
"url": "git+https://github.com/quassummanus/svg-to-swiftui-core.git"
},
"bugs": {
"url": "https://github.com/quassummanus/svg-to-swiftui-core/issues"
},
"homepage": "https://github.com/quassummanus/svg-to-swiftui-core#readme",
"scripts": {
"test": "jest",
"coverage": "jest --ci --coverage",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"posttest": "npm run lint"
},
"devDependencies": {
"@types/hast": "^2.3.1",
"@types/jest": "^27.0.2",
"@types/node": "^14.11.2",
"@types/prettier": "^2.1.6",
"@types/svg-parser": "^2.0.1",
"gts": "^3.0.3",
"jest": "^27.3.1",
"prettier": "^2.2.1",
"ts-jest": "^27.0.7",
"typescript": "^4.0.3"
},
"dependencies": {
"svg-parser": "^2.0.4",
"svg-pathdata": "^6.0.3"
}
}