-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
146 lines (146 loc) · 4.96 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"name": "webpack-babel-multi-target-plugin",
"description": "A Webpack plugin that works with Babel to allow differential loading - production deployment of ES2015 builds targeted to modern browsers, with an ES5 fallback for legacy browsers.",
"keywords": [
"webpack",
"webpack-plugin",
"babel",
"babel-loader",
"differential-loading",
"esnext",
"esmodules",
"es2015",
"es2016",
"es2017",
"es6",
"es7"
],
"version": "2.5.0",
"author": {
"name": "Daniel Schaffer",
"email": "dan@dandoes.net",
"url": "https://github.com/DanielSchaffer"
},
"repository": {
"type": "git",
"url": "git@github.com:DanielSchaffer/webpack-babel-multi-target-plugin.git"
},
"homepage": "https://github.com/DanielSchaffer/webpack-babel-multi-target-plugin",
"bugs": "https://github.com/DanielSchaffer/webpack-babel-multi-target-plugin/issues",
"license": "ISC",
"main": "dist/index.js",
"module": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"*.md",
"dist/**/*",
"package.json"
],
"scripts": {
"setup": "yarn --offline && yarn install-examples && yarn build",
"install-examples": "sh ./install-examples.sh",
"example": "ts-node --files -P tsconfig.ts-node.json examples/build",
"examples": "ts-node --files -P tsconfig.ts-node.json examples/build",
"start": "ts-node --files -P tsconfig.ts-node.json examples/serve",
"copy:js": "rsync -R ./src/**/*.js ./dist",
"copy": "yarn copy:js",
"lint": "eslint .",
"lint:fix": "yarn lint -- --fix",
"prebuild": "rimraf dist",
"build": "tsc -p ./tsconfig.build.json",
"postbuild": "yarn copy",
"bump-version": "./script/bump_version",
"precoverage": "rimraf coverage .nyc_output",
"coverage": "nyc npm test",
"coverage-report": "nyc report --reporter=text-lcov | coveralls",
"test": "TS_NODE_PROJECT=tsconfig.spec.json TS_NODE_FILES=true mocha src/**/*.spec.ts",
"e2e": "TS_NODE_PROJECT=tsconfig.e2e.json TS_NODE_FILES=true DOTENV_CONFIG_PATH=examples/.env node -r dotenv/config -r ts-node/register node_modules/.bin/protractor examples/protractor.conf.js",
"e2e-ci": "TS_NODE_PROJECT=tsconfig.e2e.json TS_NODE_FILES=true DOTENV_CONFIG_PATH=examples/.env node -r dotenv/config -r ts-node/register node_modules/.bin/protractor examples/protractor.conf.js"
},
"peerDependencies": {
"core-js": "^2.6.3 || ^3.6.5",
"html-webpack-plugin": "^3.2.0 || ^4.0.0",
"terser": ">=3.12.0",
"webpack": "^4.19.0",
"webpack-dev-server": "^3.1.0"
},
"dependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@babel/runtime": "^7.10.5",
"babel-loader": "^8.1.0",
"core-js": "^3.6.5",
"tapable": "^1.1.3",
"webpack-merge": "^5.0.9",
"webpack-sources": "^1.4.3"
},
"devDependencies": {
"@babel/preset-react": "^7.10.4",
"@types/babel-core": "^6.25.6",
"@types/chai": "^4.2.12",
"@types/compression": "^1.7.0",
"@types/core-js": "^2.5.3",
"@types/cors": "^2.8.6",
"@types/html-webpack-plugin": "^3.2.3",
"@types/jasmine": "^3.5.11",
"@types/jasminewd2": "^2.0.8",
"@types/mocha": "^5.2.5",
"@types/node": "^12.12.53",
"@types/sinon-chai": "^3.2.4",
"@types/tapable": "^1.0.6",
"@types/webpack": "^4.41.21",
"@types/webpack-dev-middleware": "^3.7.1",
"@types/webpack-dev-server": "^3.11.0",
"@types/webpack-merge": "^4.1.5",
"@types/webpack-sources": "^1.4.1",
"@typescript-eslint/eslint-plugin": "^2.10.0",
"@typescript-eslint/parser": "^2.10.0",
"acorn": "^6.0.5",
"acorn-dynamic-import": "^4.0.0",
"browserstack-local": "^1.4.5",
"chai": "^4.2.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"coveralls": "^3.1.0",
"css-loader": "^4.0.0",
"dotenv": "^8.2.0",
"eslint": "^6.7.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-mocha": "^6.2.2",
"expose-loader": "^1.0.0",
"express": "^4.17.1",
"express-history-api-fallback": "^2.2.1",
"file-loader": "^6.0.0",
"hard-source-webpack-plugin": "^0.13.1",
"html-loader": "^1.1.0",
"html-webpack-include-assets-plugin": "^2.0.0",
"html-webpack-plugin": "^4.3.0",
"jasmine-core": "^3.6.0",
"jasmine-spec-reporter": "^5.0.2",
"mini-css-extract-plugin": "^0.9.0",
"mocha": "^5.2.0",
"node-sass": "^4.14.1",
"null-loader": "^4.0.0",
"nyc": "^13.1.0",
"protractor": "^5.4.2",
"pug-html-loader": "^1.1.5",
"raw-loader": "^4.0.1",
"rimraf": "^3.0.2",
"sass-loader": "^9.0.2",
"sinon": "^9.0.2",
"sinon-chai": "^3.5.0",
"to-string-loader": "^1.1.6",
"ts-custom-error-shim": "^1.0.2",
"ts-node": "^8.10.2",
"typescript": "^3.9.7",
"webpack": "^4.44.0",
"webpack-dev-middleware": "^3.7.2",
"webpack-dev-server": "^3.11.0"
},
"resolutions": {
"@types/webpack": "^4.41.21"
}
}