-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
53 lines (53 loc) · 1.22 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": "font-blast",
"description": "Converts any icon-font (Font Awesome etc) into individual SVG files for each icon.",
"version": "0.7.0",
"license": "MIT",
"author": "eugene1g <[email protected]>",
"homepage": "https://github.com/eugene1g/font-blast",
"repository": {
"type": "git",
"url": "https://github.com/eugene1g/font-blast.git"
},
"bugs": {
"url": "https://github.com/eugene1g/font-blast/issues"
},
"main": "lib/index.js",
"bin": {
"font-blast": "./bin/font-blast.js"
},
"keywords": [
"svg",
"font",
"icon",
"extract"
],
"scripts": {
"test": "jest",
"compile": "rimraf lib/* && babel src -d lib",
"prepublish": "npm run compile"
},
"jest": {
"testPathIgnorePatterns": [
"/lib/"
]
},
"dependencies": {
"commander": "2.*",
"graceful-fs": "4.*",
"mkdirp": "0.5.*",
"svg2ttf": "4.*",
"svgo": "0.7.*",
"xmldom": "0.1.*"
},
"devDependencies": {
"babel-cli": "6.*",
"babel-jest": ">=16",
"babel-plugin-add-module-exports": ">=0.1",
"babel-plugin-transform-flow-strip-types": "6.*",
"babel-preset-es2015": "6.*",
"jest": ">=16",
"regenerator-runtime": "0.*",
"rimraf": "2.*"
}
}