-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
62 lines (62 loc) · 1.2 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
{
"version": "5.1.0",
"name": "grunt-webfonts",
"description": "SVG to webfont converter for Grunt",
"homepage": "https://github.com/L2jLiga/grunt-webfonts",
"author": "L2jLiga",
"license": "MIT",
"scripts": {
"lint": "grunt eslint"
},
"engines": {
"node": ">=16.0.0"
},
"files": [
"tasks/**"
],
"main": "tasks/webfonts.js",
"repository": {
"type": "git",
"url": "https://github.com/L2jLiga/grunt-webfonts.git"
},
"dependencies": {
"async": "^3.2.2",
"chalk": "^4.1.2",
"glob": "~7.1.7",
"lodash": "^4.17.21",
"svg2ttf": "^6.0.3",
"svgicons2svgfont": "^12.0.0",
"temp": "^0.9.4",
"ttf2eot": "^3.0.0",
"ttf2woff": "^3.0.0",
"ttf2woff2": "^5.0.0"
},
"devDependencies": {
"@types/grunt": "^0.4.27",
"@types/lodash": "^4.14.177",
"@types/node": "^16.18.59",
"eslint": "^8.2.0",
"grunt": "^1.4.1",
"grunt-cli": "^1.4.3",
"grunt-eslint": "^24.0.0"
},
"peerDependencies": {
"grunt": "^1"
},
"keywords": [
"grunt",
"gruntplugin",
"font",
"webfont",
"fontforge",
"font-face",
"woff",
"woff2",
"ttf",
"svg",
"eot",
"truetype",
"css",
"icon"
]
}