UNPKG

unbundle

Version:

`require()` and `import`/`export` in the browser, without the bundling

86 lines (85 loc) 2.77 kB
{ "name": "unbundle", "version": "5.0.0", "description": "`require()` and `import`/`export` in the browser, without the bundling", "main": "src/Unbundle", "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 prepublish && rm -rf ./public && npm run unbundle && npm run html", "unbundle": "node -- lib/cli.js -i test/fixtures/app.js", "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-polyfill": "^6.16.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", "chokidar": "^1.6.1", "debug": "^2.2.0", "module-deps": "^4.0.8", "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", "worker-farm": "^1.3.1", "yargs": "^6.3.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" } }