forked from nfroidure/gulp-iconfont
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.77 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
{
"name": "gulp-iconfont",
"description": "Create icon fonts from several SVG icons",
"version": "4.0.0",
"homepage": "https://github.com/nfroidure/gulp-iconfont",
"author": {
"name": "Nicolas Froidure",
"url": "http://www.insertafter.com/blog.html"
},
"repository": {
"type": "git",
"url": "git://github.com/nfroidure/gulp-iconfont.git"
},
"bugs": {
"url": "https://github.com/nfroidure/gulp-iconfont/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/nfroidure/gulp-iconfont/blob/master/LICENSE"
}
],
"main": "src/index.js",
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"test": "node_modules/mocha/bin/mocha tests/*.mocha.js",
"coveralls": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha --report lcovonly -- tests/*.mocha.js -R spec -t 5000 && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"cover": "./node_modules/istanbul/lib/cli.js cover --report html ./node_modules/mocha/bin/_mocha -- tests/*.mocha.js -R spec -t 5000",
"lint": "eslint **/*.js",
"lintconfig": "sf-lint-sync",
"cli": "env NPM_RUN_CLI=1"
},
"keywords": [
"gulpplugin",
"gulp",
"icon",
"font"
],
"dependencies": {
"gulp-cond": "1.0.0",
"gulp-svg2ttf": "1.1.4",
"gulp-svgicons2svgfont": "2.3.1",
"gulp-ttf2eot": "1.1.0",
"gulp-ttf2woff": "1.1.0",
"gulp-util": "~3.0.6",
"plexer": "0.0.3",
"streamfilter": "^1.0.1"
},
"devDependencies": {
"coveralls": "~2.11.3",
"eslint": "^0.24.1",
"gulp": "~3.9.0",
"istanbul": "~0.3.17",
"mocha": "~2.2.5",
"mocha-lcov-reporter": "0.0.2",
"neatequal": "^1.0.0",
"sf-lint": "^1.0.2",
"streamtest": "^1.2.1"
}
}