forked from gregnb/filemanager-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.92 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.92 KB
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
{
"name": "filemanager-webpack-plugin-fixed",
"version": "2.0.9",
"description": "This Webpack plugin allows you to copy, archive (.zip), move, delete files and directories before and after builds",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "npm run prettier && rollup -c",
"test": "npm run test-webpack3 && npm run test-webpack4",
"test-webpack3": "cd tests/webpack-3 && npm install && npm run test",
"test-webpack4": "cd tests/webpack-4 && npm install && npm run test",
"prettier": "find src | xargs prettier --write",
"webpack": "webpack --progress",
"webpack-dev-server": "webpack-dev-server --colors --progress"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VizualAbstract/filemanager-webpack-plugin.git"
},
"keywords": [
"webpack"
],
"author": "VizualAbstract",
"license": "MIT",
"bugs": {
"url": "https://github.com/VizualAbstract/filemanager-webpack-plugin/issues"
},
"homepage": "https://github.com/VizualAbstract/filemanager-webpack-plugin#readme",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-external-helpers": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"ava": "^2.3.0",
"delay": "^2.0.0",
"eslint": "^4.16.0",
"glob": "^7.1.2",
"jszip": "^3.1.5",
"prettier": "^1.10.2",
"rollup": "^0.63.5",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^9.1.4",
"rollup-plugin-includepaths": "^0.2.3",
"rollup-plugin-node-resolve": "^3.0.0",
"webpack": "^4.2.0",
"webpack-cli": "^3.3.7",
"webpack-dev-server": "^3.8.0"
},
"dependencies": {
"archiver": "^3.0.0",
"cpx-fixed": "^1.6.0",
"fs-extra": "^7.0.0",
"make-dir": "^1.1.0",
"mv": "^2.1.1",
"rimraf": "^2.6.2"
}
}