{
  "name": "rollup",
  "version": "0.57.1",
  "description": "Next-generation ES6 module bundler",
  "main": "dist/rollup.js",
  "module": "dist/rollup.es.js",
  "jsnext:main": "dist/rollup.es.js",
  "typings": "dist/typings/node-entry.d.ts",
  "bin": {
    "rollup": "./bin/rollup"
  },
  "scripts": {
    "pretest": "npm run build",
    "test": "npm run test:only && npm run test:typescript",
    "test:only": "mocha",
    "test:leak": "node --expose-gc test/leak/index.js",
    "test:quick": "mocha -b",
    "pretest:typescript": "rm -rf test/typescript/dist && rm -rf test/typescript/typings && cp -r dist test/typescript/ && cp -r typings test/typescript/",
    "test:typescript": "tsc -p test/typescript",
    "pretest-coverage": "npm run build",
    "test-coverage": "rm -rf coverage/* && istanbul cover --report json node_modules/.bin/_mocha -- -u exports -R spec test/test.js",
    "posttest-coverage": "remap-istanbul -i coverage/coverage-final.json -o coverage/coverage-remapped.json -b dist && remap-istanbul -i coverage/coverage-final.json -o coverage/coverage-remapped.lcov -t lcovonly -b dist && remap-istanbul -i coverage/coverage-final.json -o coverage/coverage-remapped -t html -b dist",
    "ci": "npm run test-coverage && codecov < coverage/coverage-remapped.lcov",
    "prebuild": "rm -rf dist",
    "build": "git rev-parse HEAD > .commithash && rollup -c && tsc -p tsconfig-types.json && chmod a+x bin/rollup",
    "watch": "rollup -cw",
    "prepublishOnly": "npm run lint && npm run test && npm run test:leak",
    "prepare": "npm run build",
    "lint": "eslint src browser bin test/test.js test/*/index.js test/utils test/**/_config.js",
    "precommit": "lint-staged",
    "postcommit": "git reset",
    "perf": "node --expose-gc scripts/perf.js",
    "perf:init": "node scripts/perf-init.js",
    "perf:debug": "node --inspect-brk scripts/perf-debug.js"
  },
  "repository": "rollup/rollup",
  "keywords": [
    "modules",
    "bundler",
    "bundling",
    "es6",
    "optimizer"
  ],
  "author": "Rich Harris",
  "contributors": [
    "Oskar Segersvärd <victorystick@gmail.com>",
    "Bogdan Chadkin <trysound@yandex.ru>"
  ],
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/rollup/rollup/issues"
  },
  "homepage": "https://github.com/rollup/rollup",
  "dependencies": {
    "@types/acorn": "^4.0.3",
    "acorn": "^5.5.3",
    "acorn-dynamic-import": "^3.0.0",
    "locate-character": "^2.0.5",
    "pretty-ms": "^3.1.0",
    "signal-exit": "^3.0.2",
    "date-time": "^2.1.0",
    "is-reference": "^1.1.0",
    "sourcemap-codec": "^1.4.1",
    "require-relative": "^0.8.7",
    "rollup-pluginutils": "^2.0.1"
  },
  "devDependencies": {
    "@types/chokidar": "^1.7.5",
    "@types/minimist": "^1.2.0",
    "@types/node": "^9.4.7",
    "@types/pretty-ms": "^3.0.0",
    "ansi-escapes": "^3.0.0",
    "buble": "^0.19.3",
    "cash-cp": "^0.2.0",
    "cash-rm": "^0.2.0",
    "chalk": "^2.3.2",
    "codecov.io": "^0.1.6",
    "console-group": "^0.3.1",
    "eslint": "^4.18.2",
    "eslint-plugin-import": "^2.9.0",
    "execa": "^0.9.0",
    "fixturify": "^0.3.4",
    "husky": "^0.14.3",
    "immutable": "^3.8.2",
    "istanbul": "^0.4.3",
    "lint-staged": "^7.0.0",
    "magic-string": "^0.23.2",
    "minimist": "^1.2.0",
    "mocha": "^5.0.4",
    "prettier": "^1.10.2",
    "remap-istanbul": "^0.10.1",
    "rollup": "^0.56.5",
    "rollup-plugin-buble": "^0.19.2",
    "rollup-plugin-commonjs": "^9.1.0",
    "rollup-plugin-json": "^2.3.0",
    "rollup-plugin-node-resolve": "^3.2.0",
    "rollup-plugin-replace": "^2.0.0",
    "rollup-plugin-string": "^2.0.0",
    "rollup-plugin-typescript": "^0.8.1",
    "rollup-watch": "^4.3.1",
    "sander": "^0.6.0",
    "source-map": "^0.6.1",
    "source-map-support": "^0.5.3",
    "typescript": "^2.7.2",
    "uglify-js": "^3.3.14"
  },
  "files": [
    "dist/rollup.browser.js",
    "dist/rollup.es.js",
    "dist/rollup.js",
    "dist/**/*.d.ts",
    "typings/package.json.d.ts",
    "bin/rollup",
    "README.md"
  ],
  "lint-staged": {
    "*.ts": [
      "prettier --write",
      "git add"
    ]
  }
}