UNPKG

1.46 kBJSONView Raw
1{
2 "name": "gulp-svg2ttf",
3 "description": "Create a TTF font from an SVG font",
4 "version": "1.1.5",
5 "homepage": "https://github.com/nfroidure/gulp-svg2ttf",
6 "author": {
7 "name": "Nicolas Froidure",
8 "url": "http://www.insertafter.com/blog.html"
9 },
10 "repository": {
11 "type": "git",
12 "url": "git://github.com/nfroidure/gulp-svg2ttf.git"
13 },
14 "bugs": {
15 "url": "https://github.com/nfroidure/gulp-svg2ttf/issues"
16 },
17 "license": "MIT",
18 "main": "src/index.js",
19 "engines": {
20 "node": ">= 0.10.0"
21 },
22 "scripts": {
23 "test": "mocha tests/*.mocha.js",
24 "coveralls": "istanbul cover _mocha --report lcovonly -- tests/*.mocha.js -R spec -t 5000 && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
25 "cover": "istanbul cover --report html _mocha -- tests/*.mocha.js -R spec -t 5000",
26 "lint": "eslint src/*.js tests/*.js",
27 "preversion": "npm test",
28 "cli": "env NPM_RUN_CLI=1"
29 },
30 "dependencies": {
31 "bufferstreams": "^1.1.0",
32 "gulp-util": "^3.0.7",
33 "readable-stream": "^2.0.4",
34 "svg2ttf": "^2.1.0"
35 },
36 "devDependencies": {
37 "coveralls": "^2.11.4",
38 "eslint": "^1.10.1",
39 "eslint-config-simplifield": "^1.1.0",
40 "gulp": "^3.9.0",
41 "istanbul": "^0.4.0",
42 "mocha": "^2.3.4",
43 "mocha-lcov-reporter": "^1.0.0",
44 "streamtest": "^1.2.1"
45 },
46 "keywords": [
47 "gulpplugin",
48 "gulp",
49 "gulp-plugin",
50 "font",
51 "svg",
52 "ttf",
53 "converter"
54 ]
55}