forked from webdeveric/webpack-assets-manifest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.75 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
{
"name": "@sharkcore/webpack-assets-manifest",
"version": "1.0.0",
"description": "This Webpack plugin will generate a JSON file that matches the original filename with the hashed version.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sharkcore/webpack-assets-manifest.git"
},
"bugs": {
"url": "https://github.com/sharkcore/webpack-assets-manifest/issues"
},
"homepage": "https://github.com/sharkcore/webpack-assets-manifest",
"keywords": [
"webpack-assets-manifest",
"webpack-plugin",
"webpack",
"plugin",
"assets",
"manifest",
"json",
"subresource",
"integrity",
"sri"
],
"main": "src/WebpackAssetsManifest.js",
"files": [
"src"
],
"scripts": {
"lint": "eslint --fix src test",
"test": "nyc mocha --colors",
"test:report": "nyc --reporter=lcov mocha --colors",
"lcov": "nyc report --reporter=text-lcov > coverage.lcov",
"prepublishOnly": "npm run lint && npm test"
},
"engines": {
"node": ">=10"
},
"dependencies": {
"chalk": "^4.0",
"loader-utils": "^1.2.3",
"lodash.get": "^4.0",
"lodash.has": "^4.0",
"mkdirp": "^1.0",
"schema-utils": "^2.0",
"tapable": "^1.0",
"webpack-sources": "^1.0"
},
"peerDependencies": {
"webpack": ">=4.4.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-spies": "^1.0.0",
"css-loader": "^3.5.3",
"eslint": "^7.1.0",
"eslint-config-webdeveric": "^0.4",
"file-loader": "^6.0.0",
"fs-extra": "^9.0.0",
"memory-fs": "^0.5.0",
"mini-css-extract-plugin": "^0.9.0",
"mocha": "^7.2.0",
"nyc": "^15.0.0",
"rimraf": "^3.0.2",
"superagent": "^5.2.2",
"webpack": "^4.43.0",
"webpack-dev-server": "^3.11.0"
}
}