-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.54 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
{
"name": "copy-entry-output-webpack-plugin",
"description": "A Webpack plugin for copying output files in another location based on entry dependencies",
"version": "0.0.2",
"main": "index.js",
"private": false,
"keywords": [
"copy output",
"entry dependencies",
"entry",
"dependencies",
"copy",
"output",
"webpack",
"webpack plugin"
],
"scripts": {
"lint": "eslint --quiet --ext .ts,.js,.vue"
},
"dependencies": {
"minimatch": "^3.0.4",
"mkdirp": "^1.0.4"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,vue}": [
"npm run lint",
"git add"
],
"*.{md,scss}": [
"prettier --write",
"git add"
]
},
"license": "MIT",
"maintainers": [
{
"name": "maxming",
"email": "maxming2333@gmail.com"
}
],
"homepage": "https://github.com/maxming2333/copy-entry-output-webpack-plugin",
"repository": {
"type": "git",
"url": "git@github.com:maxming2333/copy-entry-output-webpack-plugin.git",
"web": "https://github.com/maxming2333/copy-entry-output-webpack-plugin.git"
},
"bugs": {
"url": "https://github.com/maxming2333/copy-entry-output-webpack-plugin/issues",
"email": "maxming2333@gmail.com"
},
"engines": {
"node": ">= 8.0.0"
},
"author": "maxming <maxming2333@gmail.com> (http://maxming.me)"
}