1 | {
|
2 | "name": "webpack-manifest-plugin",
|
3 | "version": "5.0.0",
|
4 | "description": "A Webpack Plugin for generating Asset Manifests",
|
5 | "license": "MIT",
|
6 | "repository": "shellscape/webpack-manifest-plugin",
|
7 | "author": "Dane Thurber <dane.thurber@gmail.com>",
|
8 | "homepage": "https://github.com/shellscape/webpack-manifest-plugin",
|
9 | "bugs": "https://github.com/shellscape/webpack-manifest-plugin/issues",
|
10 | "main": "dist/index.js",
|
11 | "engines": {
|
12 | "node": ">=12.22.0"
|
13 | },
|
14 | "scripts": {
|
15 | "build": "tsc --project tsconfig.json",
|
16 | "ci:coverage": "nyc pnpm ci:test && nyc report --reporter=text-lcov > coverage.lcov",
|
17 | "ci:lint": "pnpm lint && pnpm security",
|
18 | "ci:test": "pnpm test -- --verbose",
|
19 | "lint": "pnpm lint:docs && pnpm lint:json && pnpm lint:js",
|
20 | "lint-staged": "lint-staged",
|
21 | "lint:docs": "prettier --write README.md",
|
22 | "lint:js": "eslint --cache --fix --cache src test",
|
23 | "lint:json": "prettier --write codecov.yml package.json",
|
24 | "prepublishOnly": "pnpm lint && pnpm build",
|
25 | "pretest": "pnpm build",
|
26 | "security": "pnpm audit --audit-level=high --prod",
|
27 | "test": "pnpm install && ava"
|
28 | },
|
29 | "files": [
|
30 | "dist",
|
31 | "README.md",
|
32 | "LICENSE"
|
33 | ],
|
34 | "peerDependencies": {
|
35 | "webpack": "^5.47.0"
|
36 | },
|
37 | "dependencies": {
|
38 | "tapable": "^2.0.0",
|
39 | "webpack-sources": "^2.2.0"
|
40 | },
|
41 | "devDependencies": {
|
42 | "@ava/babel": "^1.0.1",
|
43 | "@commitlint/cli": "^13.1.0",
|
44 | "@commitlint/config-conventional": "^13.1.0",
|
45 | "@svgr/webpack": "^5.4.0",
|
46 | "@types/node": "^16.4.3",
|
47 | "@types/webpack": "^5.28.0",
|
48 | "@types/webpack-sources": "^2.1.1",
|
49 | "@wordpress/dependency-extraction-webpack-plugin": "^3.1.0",
|
50 | "ava": "^3.13.0",
|
51 | "codecov": "^3.1.0",
|
52 | "copy-webpack-plugin": "^6.2.1",
|
53 | "del": "^6.0.0",
|
54 | "eslint-config-shellscape": "^4.2.0",
|
55 | "file-loader": "^6.2.0",
|
56 | "husky": "4.3.8",
|
57 | "lint-staged": "11.1.1",
|
58 | "memory-fs": "^0.4.1",
|
59 | "nyc": "^15.1.0",
|
60 | "pre-commit": "^1.2.2",
|
61 | "prettier": "^2.1.2",
|
62 | "prettier-plugin-package": "^1.2.0",
|
63 | "react": "^16.3.2",
|
64 | "style-loader": "^0.23.0",
|
65 | "ts-node": "^10.1.0",
|
66 | "tslib": "^2.3.0",
|
67 | "typescript": "^4.3.5",
|
68 | "webpack": "^5.47.0",
|
69 | "webpack-merge": "^5.2.0"
|
70 | },
|
71 | "ava": {
|
72 | "files": [
|
73 | "!**/fixtures/**",
|
74 | "!**/helpers/**",
|
75 | "!**/output/**"
|
76 | ]
|
77 | },
|
78 | "husky": {
|
79 | "hooks": {
|
80 | "pre-commit": "lint-staged"
|
81 | }
|
82 | },
|
83 | "jest": {
|
84 | "testEnvironment": "node",
|
85 | "coverageDirectory": "./coverage/",
|
86 | "collectCoverage": true
|
87 | },
|
88 | "lint-staged": {
|
89 | "*.js": [
|
90 | "eslint --fix"
|
91 | ]
|
92 | },
|
93 | "maintainers": [
|
94 | "Andrew Powell <andrew@shellscape.org>"
|
95 | ],
|
96 | "nyc": {
|
97 | "include": [
|
98 | "src/*.ts"
|
99 | ],
|
100 | "exclude": [
|
101 | "test/"
|
102 | ]
|
103 | },
|
104 | "pre-commit": "lint-staged"
|
105 | }
|