{
  "name": "buble-jsx-only",
  "version": "0.19.8",
  "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/datavis-tech/buble-jsx-only"
  },
  "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": "^4.19.1",
    "glob": "^7.1.4",
    "mocha": "^5.2.0",
    "rimraf": "^2.6.3",
    "rollup": "0.66.0",
    "rollup-plugin-buble": "^0.19.6",
    "rollup-plugin-commonjs": "=9.1.8",
    "rollup-plugin-json": "^3.1.0",
    "rollup-plugin-node-resolve": "^3.4.0",
    "rollup-pluginutils": "2.3.3",
    "source-map": "^0.6.1",
    "source-map-support": "^0.5.12",
    "test262": "git+https://github.com/tc39/test262.git#4f1155c566a222238fd86f179c6635ecb4c289bb",
    "test262-stream": "^1.3.0"
  },
  "dependencies": {
    "acorn": "^6.1.1",
    "acorn-dynamic-import": "^4.0.0",
    "acorn-jsx": "^5.0.1",
    "chalk": "^2.4.2",
    "magic-string": "^0.25.3",
    "minimist": "^1.2.0",
    "regexpu-core": "^4.5.4"
  }
}
