-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
76 lines (76 loc) · 1.79 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "svgs2fonts",
"version": "2.0.1",
"author": "Wayne",
"description": "svg icons to icons fonts(svg,ttf,eot,woff,woff2)",
"main": "dist/index.js",
"typings": "./index.d.ts",
"scripts": {
"build": "rimraf dist && tsc",
"test": "jest",
"test:example": "npm run build && cross-env NODE_ENV=development node examples/index"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/MichealWayne/svgs2fonts.git"
},
"keywords": [
"svg",
"eot",
"ttf",
"woff",
"woff2",
"fonts",
"svgs2fonts"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/MichealWayne/svgs2fonts.git"
},
"homepage": "https://github.com/MichealWayne/svgs2fonts.git",
"devDependencies": {
"@jest/types": "^26.3.0",
"@types/jest": "^26.0.24",
"@types/mkdirp": "^1.0.2",
"@types/node": "^15.12.4",
"@types/svg2ttf": "^5.0.1",
"@types/svgicons2svgfont": "^10.0.1",
"@types/ttf2eot": "^2.0.0",
"@types/ttf2woff": "^2.0.2",
"@types/ttf2woff2": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.21.0",
"cross-env": "^7.0.3",
"eslint": "^6.8.0",
"eslint-plugin-typescript": "^0.14.0",
"husky": "^4.3.0",
"jest": "^26.6.3",
"lint-staged": "^10.3.0",
"rimraf": "^2.6.2",
"ts-jest": "^26.2.0",
"typescript": "^4.0.0"
},
"dependencies": {
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"svg2ttf": "^6.0.2",
"svgicons2svgfont": "^9.0.3",
"ttf2eot": "^2.0.0",
"ttf2woff": "^2.0.1",
"ttf2woff2": "^4.0.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js}": [
"prettier --write",
"git add"
]
},
"bin": {
"svgs2fonts": "./bin/index.js"
}
}