{
  "name": "@bundles/core",
  "version": "0.9.4",
  "description": "Bundles is a file bundler -- similar to [WebPack](https://webpack.js.org/), [RollupJS](http://rollupjs.org), [Parcel](https://parceljs.org/), [PostCSS](https://postcss.org/), etc. -- **but for anything**. The main difference between Bundles and other bundlers is that while other bundlers compile to a specific type of output (like JavaScript, CSS, etc.), Bundles can compile to anything.",
  "keywords": ["brikcss", "bundles", "bundler", "build", "compiler", "transpiler", "task runner"],
  "license": "MIT",
  "author": "Brikcss <https://github.com/brikcss>",
  "contributors": ["The Zimmee <thezimmee@gmail.com>"],
  "homepage": "https://github.com/brikcss/bundles-core",
  "repository": {
    "type": "git",
    "url": "https://github.com/brikcss/bundles-core.git"
  },
  "bugs": {
    "url": "https://github.com/brikcss/bundles-core/issues"
  },
  "files": ["cjs", "esm", "bin"],
  "main": "./cjs/bundles.js",
  "bin": {
    "bundles": "./bin/bundles.js",
    "bundle": "./bin/bundles.js"
  },
  "module": "./esm/bundles.js",
  "publishConfig": {
    "tag": "dev",
    "access": "public"
  },
  "scripts": {
    "start": "npm run watch",
    "pretest": "npm run build",
    "test": "standard *.js && jest --config .jestrc.js --coverage && cat coverage/lcov.info | codacy-coverage && cat coverage/lcov.info | coveralls",
    "unit": "jest --config .jestrc.js",
    "watch": "concurrently \"npm run build -- --watch\" \"jest --config .jestrc.js --watch\"",
    "watchAll": "concurrently \"npm run build -- --watch\" \"jest --config .jestrc.js --watchAll\"",
    "prebuild": "rimraf cjs esm bin",
    "build": "rollup --config=.rolluprc.js"
  },
  "devDependencies": {
    "@babel/preset-env": "^7.6.3",
    "@brikcss/git-hooks": "^3.0.0",
    "@brikcss/rollup-config-generator": "0.0.16",
    "@bundles/bundles-banner": "0.0.3",
    "@bundles/bundles-ejs": "^0.3.1",
    "@bundles/bundles-filters": "^0.2.0",
    "@bundles/bundles-output": "^0.2.0",
    "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
    "codacy-coverage": "^3.4.0",
    "concurrently": "^5.0.0",
    "coveralls": "^3.0.7",
    "jest": "^24.9.0",
    "rimraf": "^2.7.0",
    "rollup": "^1.25.2",
    "string.ify": "^1.0.61"
  },
  "dependencies": {
    "@brikcss/merge": "^1.3.0",
    "chokidar": "^3.2.2",
    "cosmiconfig": "^5.2.1",
    "fs-extra": "^8.1.0",
    "globby": "^10.0.1",
    "gray-matter": "^4.0.2",
    "istextorbinary": "^2.5.1",
    "loglevel": "^1.6.4",
    "micromatch": "^4.0.2",
    "minimist": "^1.2.0"
  }
}
