{
  "name": "unbundle",
  "version": "2.0.0",
  "description": "`require()` and `import`/`export` in the browser, without the bundling",
  "main": "src",
  "bin": {
    "unbundle": "lib/cli.js"
  },
  "scripts": {
    "prepublish": "npm run clean && npm run build",
    "test": "npm run lint && npm run proof",
    "lint": "snazzy",
    "proof": "ava",
    "clean": "rm -rf lib",
    "build": "babel src --out-dir lib",
    "coverage": "nyc npm run proof",
    "codecov": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
    "start": "npm run unbundle && npm run systemjs && npm run html",
    "unbundle": "rm -rf ./public && babel-node -- src/cli.js -i test/fixtures/app.js",
    "systemjs": "mkdir -p public/systemjs && cp node_modules/systemjs/dist/* public/systemjs",
    "html": "cp test/fixtures/index.html public"
  },
  "author": "Sebastiaan Deckers <sebdeckers83@gmail.com>",
  "license": "ISC",
  "repository": "gitlab:sebdeckers/unbundle",
  "dependencies": {
    "babel-core": "^6.17.0",
    "babel-plugin-minify-dead-code-elimination": "0.0.4",
    "babel-plugin-syntax-async-generators": "^6.13.0",
    "babel-plugin-syntax-class-properties": "^6.13.0",
    "babel-plugin-syntax-decorators": "^6.13.0",
    "babel-plugin-syntax-do-expressions": "^6.13.0",
    "babel-plugin-syntax-export-extensions": "^6.13.0",
    "babel-plugin-syntax-function-bind": "^6.13.0",
    "babel-plugin-syntax-function-sent": "^6.13.0",
    "babel-plugin-syntax-object-rest-spread": "^6.13.0",
    "babel-plugin-transform-commonjs-es2015-modules": "^3.0.1",
    "babel-plugin-transform-es2015-modules-commonjs": "^6.16.0",
    "babel-plugin-transform-es2015-modules-systemjs": "^6.14.0",
    "babel-plugin-transform-import-resolve": "^2.0.0",
    "babel-plugin-transform-node-env-inline": "^6.8.0",
    "babel-preset-babili": "0.0.5",
    "babel-preset-latest": "^6.16.0",
    "babel-preset-react": "^6.16.0",
    "babel-preset-stage-0": "^6.16.0",
    "babelify": "^7.3.0",
    "bluebird": "^3.4.6",
    "debug": "^2.2.0",
    "es6-micro-loader": "^0.2.1",
    "module-deps": "^4.0.7",
    "object.entries": "^1.0.3",
    "pkg-dir": "^1.0.0",
    "react-dom": "^15.3.2",
    "read-pkg-up": "^2.0.0",
    "resolve": "^1.1.7",
    "stream-to-promise": "^2.2.0",
    "system-register-loader": "^0.2.1",
    "systemjs": "^0.19.39",
    "yargs": "^6.2.0"
  },
  "devDependencies": {
    "ava": "^0.16.0",
    "babel-cli": "^6.16.0",
    "babel-eslint": "^7.0.0",
    "babel-polyfill": "^6.16.0",
    "babel-register": "^6.16.3",
    "codecov": "^1.0.1",
    "nyc": "^8.3.2",
    "pokemon": "^1.0.1",
    "snazzy": "^5.0.0",
    "tmp": "0.0.29"
  },
  "ava": {
    "require": [
      "babel-register",
      "babel-polyfill"
    ],
    "babel": {
      "babelrc": true,
      "sourceMaps": "inline"
    }
  },
  "standard": {
    "parser": "babel-eslint"
  }
}
