-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 960 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
{
"name": "@vkl/svg-iconset-builder",
"version": "1.0.1",
"description": "create iconset from separated svg icons",
"main": "./dist/app.js",
"types": "./dist/app.d.ts",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"postpublish": "rm -rf ./dist/",
"test": "tsc -p tests/tsconfig.test.json"
},
"bin": {
"svg-iconset": "./dist/bin.js"
},
"keywords": [
"svg",
"iconset",
"sprite",
"svg-sprite"
],
"author": "Kostya V <djnafany@gmail.com>",
"license": "MIT",
"dependencies": {
"svgo": "^1.1.1",
"yargs": "^12.0.2"
},
"devDependencies": {
"@types/node": "^10.10.1",
"tslint": "^5.11.0",
"typescript": "^3.0.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DariusNorv/svg-iconset.git"
},
"bugs": {
"url": "https://github.com/DariusNorv/svg-iconset/issues"
},
"homepage": "https://github.com/DariusNorv/svg-iconset#readme"
}