This repository has been archived by the owner on Aug 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
executable file
·68 lines (68 loc) · 1.58 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
{
"name": "@kuma/webpack-iconfont-plugin",
"version": "0.1.0",
"description": "Webpack plugin to create iconfont from svgs. Forked from webpack-iconfont-plugin.",
"license": "MIT",
"repository": {
"type": "https",
"url": "https://github.com/km-tr/webpack-iconfont-plugin"
},
"scripts": {
"build": "babel --ignore __tests__ --copy-files -s inline -d dist src",
"prepare": "npm test && npm run build",
"test": "jest"
},
"keywords": [
"icons",
"font",
"iconfont",
"svg",
"scss",
"webpack",
"plugin"
],
"bugs": {
"url": "https://github.com/km-tr/webpack-iconfont-plugin/issues"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"jest": {
"rootDir": "src",
"modulePathIgnorePatterns": [
"<rootDir>/__tests__/assets/",
"<rootDir>/__tests__/build/",
"<rootDir>/__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.1.3",
"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": "~7.1.2",
"@babel/core": "~7.1.2",
"@babel/preset-env": "~7.1.0",
"@babel/register": "~7.0.0",
"babel-core": "~7.0.0-bridge.0",
"babel-jest": "~23.6.0",
"del": "^3.0.0",
"jest": "~23.6.0",
"webpack": "~4.25.1"
}
}