forked from markshapiro/webpack-merge-and-include-globally
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·67 lines (67 loc) · 1.89 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
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "webpack-merge-and-include-globally",
"version": "2.3.4",
"description": "Merge multiple files (js,css..) into single file to include somewhere",
"main": "index.node6-compatible.js",
"scripts": {
"test": "jest",
"build": "webpack --progress && cp example/index.html dist/index.html",
"start": "webpack serve",
"lint": "eslint index.js index.test.js webpack.config.js --fix",
"build-src": "babel index.js --out-file index.node6-compatible.js"
},
"contributors": [],
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-transform-runtime": "7.12.10",
"@babel/preset-env": "^7.12.11",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"classnames": "^2.2.6",
"clean-css": "^4.2.3",
"eslint": "^7.16.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"humps": "^2.0.1",
"install": "^0.13.0",
"jest": "^26.6.3",
"jquery": "^3.5.1",
"raw-loader": "^4.0.2",
"uglify-js": "^3.12.3",
"webpack": "^5.11.1",
"webpack-cli": "4.3.0",
"webpack-dev-server": "^3.11.1"
},
"peerDependencies": {
"webpack": ">=1.0.0"
},
"dependencies": {
"es6-promisify": "^6.1.1",
"glob": "^7.1.6",
"rev-hash": "^3.0.0",
"source-map": "^0.7.3"
},
"keywords": [
"webpack",
"global",
"js",
"merge",
"concat",
"global library",
"expose"
],
"repository": {
"type": "git",
"url": "git+https://github.com/markshapiro/webpack-merge-and-include-globally.git"
},
"bugs": {
"url": "https://github.com/markshapiro/webpack-merge-and-include-globally/issues"
},
"homepage": "https://github.com/markshapiro/webpack-merge-and-include-globally#readme",
"author": "Mark Shapiro",
"license": "MIT"
}