-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
executable file
·53 lines (53 loc) · 1.59 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
{
"name": "fonts-streamline",
"version": "0.0.6",
"description": "根据指定的文字重组字体库。其实就是精简字体库,让页面中轻松挂载任意字体,不必考虑字体文件大小。 ",
"homepage": "https://github.com/qdsang/fonts-streamline",
"main": "src/index.js",
"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"
},
"repository": {
"type": "git",
"url": "git://github.com/qdsang/fonts-streamline"
},
"keywords": [
"SVG",
"icons",
"font",
"creation",
"fonts"
],
"dependencies": {
"svgfont2svgicons": "0.0.4",
"svgicons2svgfont": "0.1.1",
"svg2ttf": "~1.1.2",
"ttf2eot": "~1.3.0",
"ttf2woff": "~1.3.0"
},
"devDependencies": {
"mocha": "~1.20.0",
"mocha-lcov-reporter": "0.0.1",
"coveralls": "~2.10.0",
"istanbul": "~0.2.10"
},
"author": {
"name": "qdsang",
"url": "http://www.qdsang.com/"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/qdsang/fonts-streamline/blob/master/LICENSE"
}
],
"bugs": {
"url": "https://github.com/qdsang/fonts-streamline/issues"
},
"preferGlobal": "true",
"bin": {
"fonts-streamline": "bin/fonts-streamline.js"
}
}