forked from shellscape/webpack-manifest-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.6 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
85
86
87
88
89
90
91
92
93
{
"name": "webpack-manifest-plugin",
"version": "3.0.0",
"description": "A Webpack Plugin for generating Asset Manifests",
"license": "MIT",
"repository": "shellscape/webpack-manifest-plugin",
"author": "Dane Thurber <[email protected]>",
"homepage": "https://github.com/shellscape/webpack-manifest-plugin",
"bugs": "https://github.com/shellscape/webpack-manifest-plugin/issues",
"main": "lib/index.js",
"engines": {
"node": ">=10.22.1"
},
"scripts": {
"ci:coverage": "nyc npm run ci:test && nyc report --reporter=text-lcov > coverage.lcov",
"ci:lint": "npm run lint && npm run security",
"ci:test": "npm run test -- --verbose",
"lint": "npm run lint:docs && npm run lint:json && npm run lint:package && npm run lint:js",
"lint-staged": "lint-staged",
"lint:docs": "prettier --single-quote --arrow-parens avoid --trailing-comma none --write README.md",
"lint:js": "eslint --fix --cache lib test",
"lint:json": "prettier --write codecov.yml .circleci/config.yml .eslintrc",
"lint:package": "prettier --write package.json --plugin=prettier-plugin-package",
"posttest": "npm install webpack@^4.44.2",
"security": "npm audit --audit-level=moderate",
"test": "npm run test:v4 && npm run test:v5",
"test:v4": "ava",
"test:v5": "npm install webpack@^5.0.0 --no-save && ava"
},
"files": [
"lib",
"README.md",
"LICENSE"
],
"peerDependencies": {
"webpack": ">=4.44.2"
},
"dependencies": {
"tapable": "^2.0.0",
"webpack-sources": "^2.2.0"
},
"devDependencies": {
"@ava/babel": "^1.0.1",
"@svgr/webpack": "^5.4.0",
"ava": "^3.13.0",
"codecov": "^3.1.0",
"copy-webpack-plugin": "^6.2.1",
"css-loader": "^1.0.0",
"del": "^6.0.0",
"eslint-config-shellscape": "^2.1.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^2.0.0",
"lint-staged": "^10.4.0",
"memory-fs": "^0.4.1",
"nyc": "^15.1.0",
"pre-commit": "^1.2.2",
"prettier": "^2.1.2",
"prettier-plugin-package": "^1.2.0",
"react": "^16.3.2",
"style-loader": "^0.23.0",
"webpack": "^4.44.2",
"webpack-merge": "^5.2.0"
},
"ava": {
"files": [
"!**/fixtures/**",
"!**/helpers/**",
"!**/output/**"
]
},
"jest": {
"testEnvironment": "node",
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
},
"maintainers": [
"Andrew Powell <[email protected]>"
],
"nyc": {
"include": [
"lib/*.js"
],
"exclude": [
"test/"
]
},
"pre-commit": "lint-staged"
}