forked from webpack-contrib/copy-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.23 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
{
"name": "copy-webpack-plugin",
"version": "4.0.1",
"description": "Copy files and directories in webpack",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/kevlened/copy-webpack-plugin.git"
},
"keywords": [
"webpack",
"plugin",
"transfer",
"move",
"copy"
],
"author": "Len Boyette",
"license": "MIT",
"homepage": "https://github.com/kevlened/copy-webpack-plugin",
"dependencies": {
"bluebird": "^2.10.2",
"fs-extra": "^0.26.4",
"glob": "^6.0.4",
"is-glob": "^3.1.0",
"loader-utils": "^0.2.15",
"lodash": "^4.3.0",
"minimatch": "^3.0.0",
"node-dir": "^0.1.10"
},
"scripts": {
"lint": "eslint src/ tests/",
"pretest": "npm run lint && npm run build && npm run build:tests",
"test": "mocha compiled_tests/",
"test:nolint": "npm run build && npm run build:tests && mocha compiled_tests/",
"build": "babel src/ --out-dir dist/",
"build:tests": "babel tests/ --out-dir compiled_tests/ && ncp tests/helpers compiled_tests/helpers"
},
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"chai": "^3.4.0",
"eslint": "^2.9.0",
"mocha": "^2.4.5",
"ncp": "^2.0.0"
}
}