-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
55 lines (55 loc) · 1.71 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
{
"name": "fontmin-webpack",
"version": "0.0.0",
"description": "Minifies icon fonts to just what is used.",
"main": "./lib/index.js",
"scripts": {
"start": "webpack --config test/fixtures/webpack.config.js",
"start:extract-text": "webpack --config test/fixtures/webpack.extract-text.config.js",
"start:debug": "node --inspect --debug-brk ./node_modules/.bin/webpack --config test/fixtures/webpack.config.js",
"test": "npm run test:lint && npm run test:unit",
"test:lint": "lint node",
"test:unit": "mocha --reporter spec test/*.test.js test/**/*.test.js",
"test:watch": "mocha --watch --reporter dot test/*.test.js test/**/*.test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/patrickhulce/fontmin-webpack.git"
},
"author": "Patrick Hulce <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/patrickhulce/fontmin-webpack/issues"
},
"homepage": "https://github.com/patrickhulce/fontmin-webpack#readme",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"debug": "^4.3.1",
"fontmin": "^0.9.9",
"lodash": "^4.17.21",
"webpack-sources": "^2.2.0"
},
"peerDependencies": {
"webpack": "5.x"
},
"devDependencies": {
"@mdi/font": "^5.9.55",
"@patrickhulce/lint": "^2.1.3",
"chai": "^4.3.0",
"css-loader": "^5.0.2",
"cz-conventional-changelog": "^3.3.0",
"file-loader": "^6.2.0",
"font-awesome": "^4.7.0",
"html-webpack-plugin": "^5.2.0",
"mini-css-extract-plugin": "^1.3.8",
"mocha": "^8.3.0",
"rimraf": "^3.0.2",
"style-loader": "^2.0.0",
"webpack": "^5.24.1",
"webpack-cli": "^4.5.0"
}
}