-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
56 lines (56 loc) · 1.17 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": "svg-to-elm",
"version": "0.6.0",
"description": "Convert SVG to Elm HTML modules.",
"main": "lib/src/index.js",
"bin": {
"svg-to-elm": "lib/bin/svg-to-elm.js"
},
"scripts": {
"test": "jest",
"build": "npx tsc --build tsconfig.json",
"prepack": "npm run build"
},
"keywords": [
"elm"
],
"files": [
"lib/",
"package.json"
],
"author": "Jack Franklin",
"license": "MIT",
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/common-tags": "^1.4.0",
"@types/jest": "^23.3.1",
"@types/node": "^10.9.2",
"@types/xml2js": "^0.4.3",
"@types/yargs": "^11.1.1",
"elm": "^0.18.0",
"elm-format": "^0.8.0",
"jest": "^23.5.0",
"node-elm-compiler": "^4.5.0",
"prettier": "^1.14.2",
"ts-jest": "^23.1.4",
"ts-node": "^7.0.1",
"typescript": "^3.0.1"
},
"dependencies": {
"chalk": "^2.4.1",
"common-tags": "^1.8.0",
"xml2js": "^0.4.19",
"yargs": "^12.0.1"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.ts$",
"moduleFileExtensions": [
"js",
"ts",
"json"
]
}
}