-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
81 lines (81 loc) · 2.33 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
79
80
81
{
"name": "icon-font-loader",
"description": "A webpack loader to convert svgs into font icons in CSS",
"version": "4.0.0",
"author": "moujintao <[email protected]>",
"contributors": [
"Rainfore <[email protected]>",
"CXHtml <[email protected]>",
"akimoto-share <[email protected]>",
"KenorFR",
"Thiago Faleiro <[email protected]>"
],
"scripts": {
"precommit": "node node_modules/vusion-hooks/precommit",
"test": "mocha --timeout 5000 ./test/final.test.js",
"test:webpack4": "cross-env WEBPACK_VERSION=4 npm run test",
"test:unit": "mocha --timeout 12000 ./test/unit.test.js",
"test:integration": "mocha --timeout 12000 ./test/integration.test.js",
"test:extract": "mocha --timeout 12000 ./test/extract-text-webpack.test.js",
"test:entry": "mocha --timeout 12000 ./test/entry.test.js",
"test:same": "mocha --timeout 10000 ./test/same-font.test.js",
"lint": "eslint ./src --fix"
},
"main": "./index.js",
"repository": "vusion/icon-font-loader",
"bugs": {
"url": "http://github.com/vusion/icon-font-loader/issues"
},
"license": "MIT",
"keywords": [
"iconfont",
"webfont",
"icon",
"font",
"webpack",
"loader"
],
"tags": [
"iconfont",
"webfont",
"icon",
"font",
"webpack",
"loader"
],
"dependencies": {
"@vusion/webfonts-generator": "^0.8.0",
"base-css-image-loader": "^0.3.0",
"handlebars": "^4.0.10",
"postcss": "^6.0.16",
"punycode": "^2.1.1"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"babel-loader": "^8.2.3",
"chai": "^4.1.2",
"cross-env": "^7.0.3",
"css-loader": "^5.2.7",
"eslint": "^4.19.1",
"eslint-config-vusion": "^2.1.2",
"execa": "^0.10.0",
"html-webpack-plugin": "^5.5.0",
"html-webpack-plugin-4": "npm:html-webpack-plugin@^4.5.1",
"husky": "^0.14.3",
"mini-css-extract-plugin": "^1.6.2",
"mocha": "^5.2.0",
"module-alias": "^2.2.2",
"node-sass": "^4.14.1",
"sass-loader": "^12.4.0",
"shelljs": "^0.8.4",
"speed-measure-webpack-plugin": "^1.3.1",
"style-loader": "^2.0.0",
"url-loader": "^4.1.1",
"vusion-hooks": "^0.2.1",
"webpack": "^5.64.4",
"webpack-4": "npm:webpack@^4.46.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.6.0"
}
}