-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.44 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
{
"name": "copy-webpack-plugin-advanced",
"version": "2.0.0",
"description": "Copy files && directories with webpack",
"author": "Miroslav Jonas",
"license": "MIT",
"main": "dist/index.js",
"engines": {
"node": ">= 4"
},
"files": [
"dist"
],
"scripts": {
"lint": "eslint src/ tests/",
"prepare": "npm run build",
"release": "standard-version",
"pretest": "npm run lint && npm run build && npm run build:tests",
"test": "mocha compiled_tests/",
"build": "babel src/ --out-dir dist/",
"build:tests": "babel tests/ --out-dir compiled_tests/ && ncp tests/helpers compiled_tests/helpers"
},
"dependencies": {
"globby": "^7.1.1",
"cacache": "^10.0.4",
"find-cache-dir": "^1.0.0",
"serialize-javascript": "^1.4.0",
"is-glob": "^4.0.0",
"loader-utils": "^1.1.0",
"minimatch": "^3.0.4",
"p-limit": "^1.0.0"
},
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"chai": "^3.4.0",
"eslint": "^2.9.0",
"enhanced-resolve": "^3.4.1",
"mocha": "^2.4.5",
"ncp": "^2.0.0",
"standard-version": "^4.2.0",
"is-gzip": "^2.0.0"
},
"homepage": "https://github.com/meeroslav/pr-copy-webpack-plugin",
"bugs": "https://github.com/meeroslav/pr-copy-webpack-plugin/issues",
"repository": "https://github.com/meeroslav/pr-copy-webpack-plugin.git",
"keywords": [
"webpack",
"plugin",
"transfer",
"move",
"copy"
]
}