-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
84 lines (84 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
82
83
84
{
"name": "iconfont-webpack-plugin",
"version": "5.0.1",
"description": "Simple icon font handling for webpack",
"main": "index.js",
"files": [
"placeholder.svg",
"index.js",
"lib/"
],
"scripts": {
"commit": "node_modules/.bin/git-cz",
"prepublish": "npm run test",
"changelog": "conventional-changelog -s -i CHANGELOG.md -p angular",
"example:animation": "webpack --config example/animation/webpack.config.js",
"example:default": "webpack --config example/default/webpack.config.js",
"example:module": "webpack --config example/module/webpack.config.js",
"release": "standard-version",
"test": "ava -v",
"posttest": "npm-run-all posttest:*",
"posttest:semistandard": "semistandard",
"posttest:typecheck": "tsc",
"posttest:coverage": "nyc ava",
"posttest:coverage-report": "nyc report --reporter=html",
"posttest:coverage-check": "nyc check-coverage --lines 100 --functions 100 --branches 100"
},
"repository": {
"type": "git",
"url": "https://github.com/jantimon/iconfont-webpack-plugin.git"
},
"keywords": [
"webpack",
"plugin",
"html",
"iconfont"
],
"author": "Jan Nicklas <[email protected]> (https://github.com/jantimon)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jantimon/iconfont-webpack-plugin/issues"
},
"homepage": "https://github.com/jantimon/iconfont-webpack-plugin",
"devDependencies": {
"@types/node": "13.9.8",
"ava": "0.25.0",
"commitizen": "4.2.3",
"conventional-changelog-cli": "2.1.1",
"css-loader": "4.2.1",
"cz-conventional-changelog": "3.3.0",
"mini-css-extract-plugin": "1.3.5",
"npm-run-all": "4.1.5",
"nyc": "15.1.0",
"postcss-loader": "4.2.0",
"semistandard": "14.2.3",
"standard-version": "9.1.0",
"style-loader": "2.0.0",
"typescript": "3.8.3",
"webpack": "4.46.0",
"webpack-cli": "4.5.0"
},
"dependencies": {
"loader-utils": "1.4.0",
"postcss": "7.0.35",
"svg2ttf": "5.0.0",
"svgicons2svgfont": "9.1.1",
"ttf2woff": "2.0.2"
},
"peerDependencies": {
"webpack": ">=3",
"postcss-loader": ">=2.1.3",
"css-loader": ">=4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"semistandard": {
"ignore": [
"**/dist/",
"**/fixtures/"
]
}
}