forked from prantlf/grunt-embed-fonts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.37 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
{
"name": "grunt-embed-fonts",
"description": "Grunt task to inject content of font files into stylesheets using data URIs.",
"version": "0.0.0-development",
"homepage": "https://github.com/prantlf/grunt-embed-fonts",
"author": {
"name": "Ferdinand Prantl",
"email": "[email protected]",
"url": "http://prantl.tk"
},
"repository": {
"type": "git",
"url": "https://github.com/prantlf/grunt-embed-fonts.git"
},
"bugs": {
"url": "https://github.com/prantlf/grunt-embed-fonts/issues"
},
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/prantlf/grunt-embed-fonts/blob/master/LICENSE"
}
],
"engines": {
"node": ">=6"
},
"scripts": {
"test": "grunt",
"check_coverage": "GRUNT_EMBED_FONTS_COVERAGE=1 grunt",
"post_coverage": "GRUNT_EMBED_FONTS_COVERAGE=1 grunt default coveralls"
},
"devDependencies": {
"grunt": "1.0.4",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-jshint": "^2.1.0",
"grunt-contrib-nodeunit": "^2.0.0",
"grunt-coveralls": "^2.0.0",
"grunt-istanbul": "^0.8.0",
"jshint-stylish": "^2.2.1",
"load-grunt-tasks": "^5.1.0",
"time-grunt": "^2.0.0"
},
"keywords": [
"gruntplugin",
"grunt",
"fonts",
"webfonts",
"embed",
"data-URI",
"base64"
],
"dependencies": {
"path-is-absolute": "^2.0.0"
}
}