chore(package): update lockfile package-lock.json

pull/281/head
greenkeeper[bot] 5 years ago committed by Denis Demchenko
parent 67c6db946c
commit 051a377a78

@ -1,6 +1,6 @@
{ {
"presets": [["env", { "presets": [["@babel/preset-env", {
"useBuiltIns": true, "useBuiltIns": "entry",
"modules": "umd", "modules": "umd",
"targets": { "targets": {
"ie": "8", "ie": "8",
@ -13,7 +13,7 @@
"env": { "env": {
"test": { "test": {
"plugins": [ "istanbul" ], "plugins": [ "istanbul" ],
"presets": [["env", { "targets": { "node": "current" } }]] "presets": [["@babel/preset-env", { "targets": { "node": "current" } }]]
} }
} }
} }

21209
package-lock.json generated

File diff suppressed because it is too large Load Diff

@ -26,23 +26,22 @@
"url": "git+https://github.com/lancedikson/bowser.git" "url": "git+https://github.com/lancedikson/bowser.git"
}, },
"devDependencies": { "devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.2.3",
"@babel/register": "^7.0.0", "@babel/register": "^7.0.0",
"ava": "^1.1.0", "ava": "^1.1.0",
"babel-cli": "^6.26.0",
"babel-core": "^7.2.2",
"babel-eslint": "^10.0.1", "babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5", "babel-loader": "^8.0.5",
"babel-plugin-add-module-exports": "^1.0.0", "babel-plugin-add-module-exports": "^1.0.0",
"babel-plugin-istanbul": "^4.1.6", "babel-plugin-istanbul": "^4.1.6",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"coveralls": "^3.0.2", "coveralls": "^3.0.2",
"docdash": "^1.0.0", "docdash": "^1.0.0",
"eslint": "^5.4.0", "eslint": "^5.4.0",
"eslint-config-airbnb-base": "^13.1.0", "eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-ava": "^5.1.0", "eslint-plugin-ava": "^5.1.0",
"eslint-plugin-import": "^2.13.0", "eslint-plugin-import": "^2.14.0",
"jsdoc": "^3.5.5", "jsdoc": "^3.5.5",
"nyc": "^12.0.2", "nyc": "^12.0.2",
"sinon": "^6.1.5", "sinon": "^6.1.5",

@ -4,7 +4,7 @@ module.exports = {
mode: 'production', // "production" | "development" | "none" mode: 'production', // "production" | "development" | "none"
// Chosen mode tells webpack to use its built-in optimizations accordingly. // Chosen mode tells webpack to use its built-in optimizations accordingly.
entry: { entry: {
bundled: ['babel-polyfill', './src/bowser.js'], bundled: ['@babel/polyfill', './src/bowser.js'],
es5: './src/bowser.js', es5: './src/bowser.js',
}, // string | object | array }, // string | object | array
// defaults to ./src // defaults to ./src

Loading…
Cancel
Save