-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
49 lines (49 loc) · 1.27 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
{
"name": "webpack-concat-plugin",
"version": "3.0.0",
"author": "huangxueliang",
"description": "Webpack file concatenation.",
"license": "ISC",
"main": "./release.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --collectCoverageFrom='src/**/*.js' --coverage",
"build": "babel index.js --out-file release.js"
},
"dependencies": {
"concat-with-sourcemaps": "^1.0.5",
"globby": "^8.0.1",
"schema-utils": "^0.4.5",
"uglify-es": "^3.3.9",
"upath": "^1.1.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-jest": "^22.4.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"html-webpack-plugin": "^3.0.4",
"is-object": "^1.0.1",
"jest": "^22.4.2",
"webpack": "^4.0.1"
},
"peerDependencies": {
"webpack": "^4.0.1"
},
"engines": {
"node": ">= 4.8 < 5.0.0 || >= 5.10"
},
"homepage": "https://github.com/hxlniada/webpack-concat-plugin",
"repository": {
"type": "git",
"url": "git+https://github.com/hxlniada/webpack-concat-plugin.git"
},
"bugs": {
"url": "https://github.com/hxlniada/webpack-concat-plugin/issues"
},
"jest": {
"testEnvironment": "node"
}
}