forked from ztoben/assets-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.37 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
{
"name": "assets-webpack-plugin",
"version": "7.1.1",
"description": "Emits a json file with assets paths",
"main": "dist/index.js",
"engines": {
"node": ">=10.x.x"
},
"scripts": {
"lint": "standard --verbose | snazzy",
"fix-lint": "standard --fix",
"test": "mocha test",
"build": "babel index.js --out-dir dist && babel lib --out-dir dist/lib",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/ztoben/assets-webpack-plugin.git"
},
"keywords": [
"webpack",
"plugin",
"generate",
"assets",
"hashes"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ztoben/assets-webpack-plugin/issues"
},
"homepage": "https://github.com/ztoben/assets-webpack-plugin",
"files": [
"index.js",
"dist/"
],
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-preset-env": "1.7.0",
"chai": "4.3.4",
"css-loader": "5.2.7",
"mini-css-extract-plugin": "1.6.2",
"mocha": "8.4.0",
"rimraf": "3.0.2",
"snazzy": "9.0.0",
"standard": "16.0.3",
"style-loader": "2.0.0",
"webpack": "5.53.0",
"webpack-subresource-integrity": "1.5.2"
},
"dependencies": {
"camelcase": "^6.0.0",
"escape-string-regexp": "4.0.0",
"lodash": "^4.17.21"
},
"peerDependencies": {
"webpack": ">=5.0.0"
}
}