forked from FLGMwt/webpack-iconfont-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.89 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "webpack-iconfont-plugin-temp-fork",
"version": "0.0.2",
"description": "Webpack plugin to create iconfont from svgs",
"license": "MIT",
"author": "Jens Fischer <[email protected]>, Fork: Ryan Stelly, until fixes merged",
"repository": {
"type": "https",
"url": "https://github.com/FLGMwt/webpack-iconfont-plugin"
},
"scripts": {
"build": "babel --ignore __tests__ --copy-files -s inline -d dist src",
"prepublish": "npm test && npm run build",
"test": "jest"
},
"keywords": [
"icons",
"font",
"iconfont",
"svg",
"scss",
"webpack",
"plugin"
],
"bugs": {
"url": "https://github.com/artofrawr/webpack-iconfont-plugin/issues"
},
"babel": {
"plugins": [
"add-module-exports",
"transform-object-entries"
],
"presets": [
"es2015",
"latest"
]
},
"jest": {
"moduleDirectories": [
"node_modules"
],
"modulePathIgnorePatterns": [
"<rootDir>/src/__tests__/assets/",
"<rootDir>/src/__tests__/build/",
"<rootDir>/src/__tests__/config/"
]
},
"main": "dist/index.js",
"dependencies": {
"async-throttle": "^1.1.0",
"clone-deep": "^1.0.0",
"fs-extra": "^3.0.0",
"glob-parent": "^3.1.0",
"globby": "^6.1.0",
"hasha": "^3.0.0",
"nodeify": "^1.0.0",
"nunjucks": "^3.0.1",
"svg2ttf": "^4.0.3",
"svgicons2svgfont": "^5.0.1",
"ttf2eot": "^2.0.0",
"ttf2woff": "^2.0.1",
"ttf2woff2": "^2.0.3",
"xml2js": "^0.4.17"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-jest": "^20.0.3",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-object-entries": "^1.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-latest": "^6.24.1",
"babel-register": "^6.24.1",
"del": "^3.0.0",
"jest": "^20.0.4",
"webpack": "^3.0.0"
}
}