mirror of
https://github.com/developit/microbundle.git
synced 2026-01-18 13:56:35 +00:00
274: Update babel7 to the latest version 🚀 r=ForsakenHarmony a=greenkeeper[bot] ## There have been updates to the *babel7* monorepo: - The `devDependency` [@babel/cli](https://www.npmjs.com/package/@babel/cli) was updated from `7.1.5` to `7.2.0`. - The `dependency` [@babel/core](https://www.npmjs.com/package/@babel/core) was updated from `7.2.0` to `7.2.2`. - The `devDependency` [@babel/node](https://www.npmjs.com/package/@babel/node) was updated from `7.2.0` to `7.2.2`. - The `dependency` [@babel/plugin-proposal-class-properties](https://www.npmjs.com/package/@babel/plugin-proposal-class-properties) was updated from `7.1.0` to `7.2.1`. - The `dependency` [@babel/plugin-syntax-jsx](https://www.npmjs.com/package/@babel/plugin-syntax-jsx) was updated from `7.0.0` to `7.2.0`. - The `devDependency` [@babel/preset-env](https://www.npmjs.com/package/@babel/preset-env) was updated from `7.1.6` to `7.2.0`. These versions are **not covered** by your **current version range**. If you don’t accept this pull request, your project will work just like it did before. However, you might be missing out on a bunch of new features, fixes and/or performance improvements from the dependency update. This monorepo update includes releases of one or more dependencies which all belong to the [babel7 group definition](https://github.com/greenkeeperio/monorepo-definitions). --- [Find out more about this release](). <details> <summary>FAQ and help</summary> There is a collection of [frequently asked questions](https://greenkeeper.io/faq.html). If those don’t help, you can always [ask the humans behind Greenkeeper](https://github.com/greenkeeperio/greenkeeper/issues/new). </details> --- Your [Greenkeeper](https://greenkeeper.io) bot 🌴 Co-authored-by: greenkeeper[bot] <greenkeeper[bot]@users.noreply.github.com>
101 lines
3.0 KiB
JSON
101 lines
3.0 KiB
JSON
{
|
|
"name": "microbundle",
|
|
"version": "0.8.4",
|
|
"description": "Zero-configuration bundler for tiny JS libs, powered by Rollup.",
|
|
"main": "dist/microbundle.js",
|
|
"source": "src/index.js",
|
|
"bin": "dist/cli.js",
|
|
"scripts": {
|
|
"build": "npm run -s build:babel && npm run -s build:self",
|
|
"build:babel": "babel-node src/cli.js --target=node --format cjs src/{cli,index}.js",
|
|
"build:self": "node dist/cli.js --target=node --format cjs src/{cli,index}.js",
|
|
"prepare": "npm run -s build",
|
|
"prepare:babel": "babel src/*.js -d dist && npm t",
|
|
"lint": "eslint src",
|
|
"test": "npm run -s lint && npm run -s build && cross-env BABEL_ENV=test jest",
|
|
"release": "npm run -s prepare && npm test && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish"
|
|
},
|
|
"repository": "developit/microbundle",
|
|
"prettier": {
|
|
"singleQuote": true,
|
|
"trailingComma": "all",
|
|
"useTabs": true
|
|
},
|
|
"jest": {
|
|
"testEnvironment": "node",
|
|
"testURL": "http://localhost"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"keywords": [
|
|
"bundle",
|
|
"rollup",
|
|
"micro library"
|
|
],
|
|
"files": [
|
|
"src",
|
|
"dist"
|
|
],
|
|
"author": "Jason Miller <jason@developit.ca> (http://jasonformat.com)",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@babel/core": "^7.2.2",
|
|
"@babel/plugin-proposal-class-properties": "7.2.1",
|
|
"@babel/plugin-syntax-jsx": "^7.2.0",
|
|
"@babel/polyfill": "^7.0.0",
|
|
"asyncro": "^3.0.0",
|
|
"autoprefixer": "^9.0.0",
|
|
"babel-plugin-transform-async-to-promises": "^0.8.3",
|
|
"brotli-size": "^0.0.3",
|
|
"camelcase": "^5.0.0",
|
|
"chalk": "^2.4.0",
|
|
"cssnano": "^4.1.7",
|
|
"es6-promisify": "^6.0.1",
|
|
"gzip-size": "^5.0.0",
|
|
"pretty-bytes": "^5.1.0",
|
|
"rollup": "^0.67.3",
|
|
"rollup-plugin-babel": "^4.1.0-0",
|
|
"rollup-plugin-buble": "^0.19.4",
|
|
"rollup-plugin-bundle-size": "^1.0.1",
|
|
"rollup-plugin-commonjs": "^9.0.0",
|
|
"rollup-plugin-es3": "^1.1.0",
|
|
"rollup-plugin-flow": "^1.1.1",
|
|
"rollup-plugin-json": "^3.1.0",
|
|
"rollup-plugin-node-resolve": "^3.3.0",
|
|
"rollup-plugin-postcss": "^1.6.1",
|
|
"rollup-plugin-preserve-shebang": "^0.1.6",
|
|
"rollup-plugin-sizes": "^0.4.2",
|
|
"rollup-plugin-terser": "^3.0.0",
|
|
"rollup-plugin-typescript2": "^0.18.0",
|
|
"sade": "^1.4.0",
|
|
"tiny-glob": "^0.2.6",
|
|
"tslib": "^1.9.0",
|
|
"typescript": ">=2.8.3"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.2.0",
|
|
"@babel/node": "^7.2.2",
|
|
"@babel/preset-env": "^7.2.0",
|
|
"babel-core": "^7.0.0-bridge.0",
|
|
"babel-jest": "^23.6.0",
|
|
"cross-env": "^5.2.0",
|
|
"directory-tree": "^2.1.0",
|
|
"eslint": "^5.0.0",
|
|
"eslint-config-developit": "^1.1.1",
|
|
"eslint-config-prettier": "^3.0.0",
|
|
"eslint-plugin-prettier": "^3.0.0",
|
|
"fs-extra": "^7.0.1",
|
|
"husky": "^1.1.2",
|
|
"jest": "^23.6.0",
|
|
"lint-staged": "^8.0.0",
|
|
"prettier": "^1.15.3",
|
|
"regenerator-runtime": "^0.13.1",
|
|
"rimraf": "^2.6.2",
|
|
"shell-quote": "^1.6.1",
|
|
"strip-ansi": "^5.0.0"
|
|
}
|
|
}
|