-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.16 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
{
"name": "svg-icon-center",
"version": "1.2.0",
"scripts": {
"build": "tsc -p .",
"build:w": "yarn build -w",
"test": "ts-node -P ./tsconfig.json src/test/index.ts",
"test:bin": "ts-node src/bin/index.ts -s src/test/svg/**/*.svg -o src/test/dist",
"prepublish": "yarn build"
},
"main": "dest/index.js",
"types": "dest/index.d.ts",
"bin": "dest/bin/index.js",
"dependencies": {
"commander": "^5.1.0",
"glob": "^7.1.6",
"svg-path-properties": "^1.0.4",
"svgpath": "^2.2.3",
"svgson": "https://github.com/elrumordelaluz/svgson.git#master"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/node": "^13.13.2",
"ts-node": "^8.9.0",
"typescript": "^3.8.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MNBuyskih/svg-center.git"
},
"keywords": [
"svg",
"font",
"icon"
],
"files": [
"dest",
"README.md"
],
"author": {
"name": "Michael Buyskih",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/MNBuyskih/svg-center/issues"
},
"homepage": "https://github.com/MNBuyskih/svg-center#svg-center"
}