-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.13 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
{
"name": "extract-plugin",
"version": "0.3.0",
"description": "Extract any files from webpack build.",
"license": "MIT",
"author": "Matthias Giger",
"contributors": [
{
"name": "Tobias Koppers @sokra (mini-css-extract-plugin)"
}
],
"repository": "github:tobua/extract-plugin",
"main": "dist/cjs.js",
"scripts": {
"start": "npm run build -- -w",
"build": "cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js' --copy-files",
"clean": "del-cli dist",
"lint": "eslint --cache --fix src test",
"lint-staged": "lint-staged",
"prebuild": "npm run clean",
"prepublish": "npm run build",
"test": "jest",
"test:watch": "jest --watch",
"test:update": "jest -u",
"test:manual": "webpack-dev-server test/manual/src/index.js --open --config test/manual/webpack.config.js",
"defaults": "webpack-defaults"
},
"files": [
"dist"
],
"peerDependencies": {
"webpack": "^5.5.0"
},
"dependencies": {
"@webpack-contrib/schema-utils": "^1.0.0-beta.0",
"loader-utils": "^2.0.0",
"webpack-sources": "^2.2.0"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@webpack-contrib/eslint-config-webpack": "^3.0.0",
"babel-jest": "^26.6.3",
"cross-env": "^7.0.2",
"css-loader": "^5.0.1",
"del": "^6.0.0",
"del-cli": "^3.0.1",
"eslint": "^7.13.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"file-loader": "^6.2.0",
"globby": "^11.0.1",
"jest": "^26.6.3",
"lint-staged": "^10.5.1",
"lodash.get": "^4.4.2",
"memory-fs": "^0.5.0",
"mini-css-extract-plugin": "^1.3.1",
"prettier": "^2.1.2",
"raw-loader": "^4.0.2",
"rimraf": "^3.0.2",
"webpack": "^4.17.2",
"webpack-cli": "^4.2.0",
"webpack-defaults": "^4.0.0",
"webpack-dev-server": "^3.11.0"
},
"keywords": [
"webpack",
"extract",
"plugin"
],
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}