-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 936 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
{
"name": "svg2ts",
"version": "0.5.0",
"description": "",
"main": "lib/index",
"bin": {
"svg2ts": "./lib/index.js"
},
"scripts": {
"postinstall": "node -e 'require(\"./lib/utils/banner\").playBanner()'",
"build": "tsc",
"prepublishOnly": "tsc",
"test": "node ./lib/index.js -b typescript -i ./tests/svg-sources -o ./tests/ts-output"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xperiments/svg2ts.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/xperiments/svg2ts/issues"
},
"homepage": "https://github.com/xperiments/svg2ts#readme",
"devDependencies": {
"@types/node": "^8.0.47",
"twit": "^2.2.11",
"typescript": "^2.6.1"
},
"types": "lib/index",
"dependencies": {
"crypto": "^1.0.1",
"fast-glob": "^2.2.6",
"postcss": "^6.0.14",
"postcss-prefix-selector": "^1.6.0"
}
}