forked from sapegin/grunt-webfont
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
78 lines (78 loc) · 1.75 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
77
78
{
"name": "grunt-webfont",
"description": "Ultimate SVG to webfont converter for Grunt.",
"version": "1.7.2",
"homepage": "https://github.com/sapegin/grunt-webfont",
"author": {
"name": "Artem Sapegin",
"url": "http://sapegin.me/"
},
"contributors": [
"Maxime Thirouin (http://moox.io/)",
"Aaron Lampros (https://github.com/alampros)",
"Cyrille Meichel (https://github.com/landru29)"
],
"repository": {
"type": "git",
"url": "git://github.com/sapegin/grunt-webfont.git"
},
"bugs": {
"url": "https://github.com/sapegin/grunt-webfont/issues"
},
"license": "MIT",
"main": "tasks/webfont.js",
"scripts": {
"test": "grunt --stack",
"lint": "jscs -c .jscs.json --fix tasks/"
},
"engines": {
"node": ">=0.12.0"
},
"dependencies": {
"async": "~3.2.3",
"chalk": "~4.1.2",
"glob": "~7.2.0",
"lodash": "~4.17.10",
"memorystream": "~0.3.1",
"mkdirp": "~0.5.5",
"svg2ttf": "~6.0.3",
"svgicons2svgfont": "~10.0.5",
"svgo": "~2.8.0",
"temp": "~0.9.4",
"ttf2eot": "~3.0.0",
"ttf2woff": "~3.0.0",
"ttf2woff2": "~4.0.4",
"underscore.string": "~3.3.6",
"winston": "~3.4.0"
},
"devDependencies": {
"grunt": "~1.4.1",
"grunt-cli": "~1.4.3",
"grunt-contrib-clean": "~2.0.0",
"grunt-contrib-jshint": "~3.1.1",
"grunt-contrib-nodeunit": "~4.0.0",
"grunt-contrib-watch": "~1.1.0",
"grunt-jscs": "~3.0.1",
"load-grunt-tasks": "~5.1.0",
"stylus": "~0.56.0",
"xml2js": "~0.4.23"
},
"peerDependencies": {
"grunt": ">=1.0.0"
},
"keywords": [
"gruntplugin",
"font",
"webfont",
"fontforge",
"font-face",
"woff",
"woff2",
"ttf",
"svg",
"eot",
"truetype",
"css",
"icon"
]
}