forked from nfroidure/gulp-iconfont
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.57 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
{
"name": "gulp-iconfont",
"description": "Create icon fonts from several SVG icons",
"version": "11.0.1",
"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"
},
"license": "MIT",
"main": "src/index.js",
"engines": {
"node": ">=12"
},
"scripts": {
"test": "mocha tests/*.mocha.js",
"coveralls": "istanbul cover _mocha --report lcovonly -- tests/*.mocha.js -R spec -t 5000 && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"cover": "istanbul cover --report html _mocha -- tests/*.mocha.js -R spec -t 5000",
"lint": "eslint src/*.js tests/*.js",
"preversion": "npm run lint && npm test",
"cli": "env NPM_RUN_CLI=1",
"generate-fixtures": "./tests/generate-fixtures.sh"
},
"keywords": [
"gulpplugin",
"gulp",
"icon",
"font"
],
"dependencies": {
"gulp-spawn": "^1.0.0",
"gulp-svg2ttf": "^2.0.0",
"gulp-svgicons2svgfont": "^5.0.1",
"gulp-ttf2eot": "^1.1.1",
"gulp-ttf2woff": "^1.1.0",
"gulp-ttf2woff2": "^4.0.0",
"multipipe": "^4.0.0",
"streamfilter": "^3.0.0"
},
"devDependencies": {
"coveralls": "^3.0.2",
"eslint": "^7.18.0",
"gulp": "^4.0.0",
"istanbul": "^0.4.2",
"mocha": "^8.2.1",
"mocha-lcov-reporter": "^1.0.0",
"neatequal": "^1.0.0",
"streamtest": "^2.0.0"
}
}