UNPKG

1.12 kBJSONView Raw
1{
2 "name": "copy-webpack-plugin",
3 "version": "2.1.4",
4 "description": "Copy files and directories in webpack",
5 "main": "dist/index.js",
6 "repository": {
7 "type": "git",
8 "url": "https://github.com/kevlened/copy-webpack-plugin.git"
9 },
10 "keywords": [
11 "webpack",
12 "plugin",
13 "transfer",
14 "move",
15 "copy"
16 ],
17 "author": "Len Boyette",
18 "license": "MIT",
19 "homepage": "https://github.com/kevlened/copy-webpack-plugin",
20 "dependencies": {
21 "bluebird": "^2.10.2",
22 "fs-extra": "^0.26.4",
23 "glob": "^6.0.4",
24 "lodash": "^4.3.0",
25 "minimatch": "^3.0.0",
26 "node-dir": "^0.1.10"
27 },
28 "scripts": {
29 "lint": "eslint src/ tests/",
30 "pretest": "npm run lint && npm run build && npm run build:tests",
31 "test": "mocha compiled_tests/",
32 "build": "babel src/ --out-dir dist/",
33 "build:tests": "babel tests/ --out-dir compiled_tests/ && ncp tests/helpers compiled_tests/helpers"
34 },
35 "devDependencies": {
36 "babel-cli": "^6.8.0",
37 "babel-preset-es2015": "^6.6.0",
38 "chai": "^3.4.0",
39 "eslint": "^2.9.0",
40 "mocha": "^2.4.5",
41 "ncp": "^2.0.0"
42 }
43}