-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.7 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
{
"name": "svg-fontglyphs2svg",
"version": "0.1.0",
"description": "Example of conversion of bundled iconfont SVG <font-face> <glyph>s to separate SVG <path>s.",
"homepage": "https://github.com/grimen/svg-fontglyphs2svg",
"author": "Jonas Grimfelt <grimen@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/grimen/svg-fontglyphs2svg.git"
},
"main": "index.js",
"scripts": {
"clean": "rm -rf ./dist && rm -rf ./node_modules && rm -rf ./bower_components",
"build": "./node_modules/.bin/babel src --out-dir dist --presets es2015 && ./node_modules/.bin/fonteditor-ttf2svg ./bower_components/material-design-icons/iconfont/MaterialIcons-Regular.ttf && webpack",
"start": "webpack-dev-server",
"test": "echo \"Warn: no test specified\" && exit 0",
"lint": "eslint source/ --quiet",
"validate": "npm run lint && npm outdated --depth 0 && npm run test",
"postinstall": "./node_modules/.bin/bower install"
},
"devDependencies": {
"b3b": "0.0.1",
"babel-cli": "^6.3.17",
"babel-core": "^6.3.26",
"babel-loader": "^6.2.0",
"babel-plugin-transform-runtime": "^6.3.13",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.3.13",
"bower": "^1.7.2",
"copy-webpack-plugin": "^0.3.3",
"css-loader": "^0.23.1",
"eslint": "^1.10.3",
"extract-text-webpack-plugin": "^0.9.1",
"file-loader": "^0.8.5",
"fonteditor-core": "0.0.4",
"fonteditor-ttf2svg-cli": "^0.1.0",
"html-loader": "^0.4.0",
"is-ttf": "^0.2.1",
"pretty-data": "^0.40.0",
"style-loader": "^0.13.0",
"svg-loader": "0.0.2",
"url-loader": "^0.5.7",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.14.0"
}
}