UNPKG

2.69 kBJSONView Raw
1{
2 "name": "webpack-assets-manifest",
3 "version": "4.0.6",
4 "description": "This Webpack plugin will generate a JSON file that matches the original filename with the hashed version.",
5 "license": "MIT",
6 "repository": {
7 "type": "git",
8 "url": "https://github.com/webdeveric/webpack-assets-manifest.git"
9 },
10 "bugs": {
11 "url": "https://github.com/webdeveric/webpack-assets-manifest/issues"
12 },
13 "homepage": "https://github.com/webdeveric/webpack-assets-manifest",
14 "keywords": [
15 "webpack-assets-manifest",
16 "webpack-plugin",
17 "webpack",
18 "plugin",
19 "assets",
20 "manifest",
21 "json",
22 "subresource",
23 "integrity",
24 "sri"
25 ],
26 "main": "src/WebpackAssetsManifest.js",
27 "files": [
28 "src"
29 ],
30 "scripts": {
31 "lint": "eslint --fix src test",
32 "typecheck": "tsc",
33 "spellcheck": "cspell --no-progress './{.github,src,test}/**/*.{js,json}' './*.{md,js}' './package.json'",
34 "test": "nyc mocha --colors",
35 "test:report": "nyc --reporter=lcov mocha --colors",
36 "lcov": "nyc report --reporter=text-lcov > coverage.lcov",
37 "pre-commit": "lint-staged",
38 "prepare": "husky install",
39 "prepublishOnly": "npm run spellcheck && npm run lint && npm test"
40 },
41 "lint-staged": {
42 "*.{js,json,md}": "cspell lint --no-progress --no-summary --no-must-find-files",
43 "*.js": "eslint --fix"
44 },
45 "engines": {
46 "node": ">=10.13.0"
47 },
48 "author": {
49 "email": "eric@webdeveric.com",
50 "name": "Eric King",
51 "url": "http://webdeveric.com/"
52 },
53 "dependencies": {
54 "chalk": "^4.0",
55 "deepmerge": "^4.0",
56 "lockfile": "^1.0",
57 "lodash.get": "^4.0",
58 "lodash.has": "^4.0",
59 "mkdirp": "^1.0",
60 "schema-utils": "^3.0",
61 "tapable": "^1.0",
62 "webpack-sources": "^1.0"
63 },
64 "peerDependencies": {
65 "webpack": "^4.40.0"
66 },
67 "devDependencies": {
68 "@types/lodash.get": "^4.4.6",
69 "@types/lodash.has": "^4.5.6",
70 "@types/node": "^14.14.41",
71 "@types/tapable": "^1.0.7",
72 "@types/webpack-sources": "^1.4.3",
73 "@webdeveric/eslint-config": "^0.1.2",
74 "chai": "^4.3.4",
75 "chai-spies": "^1.0.0",
76 "compression-webpack-plugin": "^6.1.1",
77 "copy-webpack-plugin": "^6.4.1",
78 "cspell": "^5.3.12",
79 "css-loader": "^5.2.4",
80 "eslint": "^7.24.0",
81 "file-loader": "^6.2.0",
82 "fs-extra": "^9.1.0",
83 "husky": "^6.0.0",
84 "lint-staged": "^10.5.4",
85 "memory-fs": "^0.5.0",
86 "mini-css-extract-plugin": "^1.5.0",
87 "mocha": "^8.3.2",
88 "nyc": "^15.1.0",
89 "rimraf": "^3.0.2",
90 "superagent": "^6.1.0",
91 "typescript": "^4.2.4",
92 "webpack": "^4.46.0",
93 "webpack-dev-server": "^3.11.2",
94 "webpack-subresource-integrity": "^1.5.2"
95 }
96}