-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.18 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
{
"name": "svg2elm",
"version": "1.2.4",
"description": "Generates Elm modules out of SVG files",
"main": "dist/svg2elm.js",
"files": [
"dist",
"bin/svg2elm"
],
"bin": {
"svg2elm": "bin/svg2elm"
},
"scripts": {
"build": "parcel build src/svg2elm.ts src/cli.ts --target node && tsc --emitDeclarationOnly",
"docs": "typedoc --excludeNotExported --out docs src/svg2elm.ts && touch docs/.nojekyll"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pinata-llc/svg2elm.git"
},
"keywords": [
"convert",
"svg",
"elm",
"icons",
"inline-svg",
"svg-to-elm"
],
"contributors": [
"Agustín Zubiaga <[email protected]>",
"Piotr Brzeziński <[email protected]>"
],
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/pinata-llc/svg2elm/issues"
},
"homepage": "https://github.com/pinata-llc/svg2elm#readme",
"devDependencies": {
"@types/node": "^13.13.5",
"@types/yargs": "^15.0.4",
"elm": "^0.19.1-3",
"node-elm-compiler": "^5.0.5",
"parcel-bundler": "^1.12.5",
"typedoc": "^0.17.6",
"typescript": "^3.8.3"
},
"dependencies": {
"yargs": "^15.3.1"
}
}