{
  "name": "buble",
  "version": "0.20.0",
  "description": "The blazing fast, batteries-included ES2015 compiler",
  "main": "dist/buble.cjs.js",
  "module": "dist/buble.es.js",
  "browser": {
    "dist/buble.cjs.js": "./dist/buble-browser.cjs.js",
    "dist/buble.es.js": "./dist/buble-browser.es.js"
  },
  "unpkg": "dist/buble-browser-deps.umd.js",
  "files": [
    "bin",
    "src",
    "dist",
    "register.js",
    "README.md"
  ],
  "scripts": {
    "build": "rollup -c",
    "test": "mocha test/test.js",
    "pretest": "npm run build",
    "test:register": "echo '\"use strict\";' | cat - src/program/Node.js | sed 's/export default/module.exports =/' | node -r ./register.js",
    "test:full": "npm run test && npm run test:register && npm run lint",
    "test:bundlers": "npm run test:bundlers:rollup && npm run test:bundlers:webpack && npm run test:bundlers:parcel",
    "test:bundlers:rollup": "test \"$(npx rollup -c test/bundlers/rollup.config.js | node)\" = 'var x = 4'",
    "test:bundlers:webpack": "cd test/bundlers && mkdir -p node_modules && npm i webpack && node webpack.js && test \"$(node dist/main.js)\" = 'var x = 4'",
    "test:bundlers:parcel": "cd test/bundlers && mkdir -p node_modules && npm i parcel && npx parcel build index.js --no-cache && test \"$(node dist/index.js)\" = 'var x = 4'",
    "prepublish": "npm test",
    "lint": "eslint bin/ src/ test/test.js test/utils/ register.js rollup.*.js scripts/"
  },
  "bin": {
    "buble": "./bin/buble"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/bublejs/buble.git"
  },
  "keywords": [
    "javascript",
    "transpilation",
    "compilation",
    "esnext",
    "es2015",
    "es2017",
    "es6",
    "es7"
  ],
  "author": "Rich Harris",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/bublejs/buble/issues"
  },
  "homepage": "https://github.com/bublejs/buble#README",
  "devDependencies": {
    "console-group": "^0.3.3",
    "eslint": "^6.8.0",
    "glob": "^7.1.6",
    "mocha": "^7.1.1",
    "rimraf": "^3.0.2",
    "rollup": "^2.2.0",
    "@rollup/plugin-buble": "^0.21.1",
    "@rollup/plugin-commonjs": "^11.0.2",
    "@rollup/plugin-json": "^4.0.2",
    "@rollup/plugin-node-resolve": "^7.1.1",
    "source-map": "0.6.1",
    "source-map-support": "^0.5.16",
    "test262": "git+https://github.com/tc39/test262.git#4f1155c566a222238fd86f179c6635ecb4c289bb",
    "test262-stream": "^1.3.0"
  },
  "dependencies": {
    "acorn": "^6.4.1",
    "acorn-dynamic-import": "^4.0.0",
    "acorn-jsx": "^5.2.0",
    "chalk": "^2.4.2",
    "magic-string": "^0.25.7",
    "minimist": "^1.2.5",
    "regexpu-core": "4.5.4"
  }
}
