forked from nfroidure/svgfont2svgicons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.63 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": "svgfont2svgicons",
"version": "2.0.0",
"description": "Extract SVG icons from an SVG font",
"homepage": "https://github.com/nfroidure/svgfont2svgicons",
"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/nfroidure/svgfont2svgicons"
},
"keywords": [
"SVG",
"icons",
"font",
"creation",
"fonts"
],
"dependencies": {
"commander": "^2.8.1",
"plexer": "0.0.3",
"readable-stream": "^2.0.0",
"sax": "1.1.x",
"streamqueue": "^1.1.0",
"svg-pathdata": "1.0.0"
},
"devDependencies": {
"async": "^1.3.0",
"coveralls": "~2.11.2",
"istanbul": "~0.3.15",
"mocha": "~2.2.5",
"mocha-lcov-reporter": "0.0.2",
"streamtest": "^1.2.0",
"svgicons2svgfont": "^2.0.2"
},
"author": {
"name": "Nicolas Froidure",
"url": "http://www.insertafter.com/blog.html"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/nfroidure/svgfont2svgicons/blob/master/LICENSE"
}
],
"bugs": {
"url": "https://github.com/nfroidure/svgfont2svgicons/issues"
},
"preferGlobal": "true",
"bin": {
"svgfont2svgicons": "bin/svgfont2svgicons.js"
}
}