Files
30-seconds-of-code/node_modules/rollup/package.json
2019-08-20 15:52:05 +02:00

160 lines
4.9 KiB
JSON

{
"_from": "rollup@^0.58.2",
"_id": "rollup@0.58.2",
"_inBundle": false,
"_integrity": "sha512-RZVvCWm9BHOYloaE6LLiE/ibpjv1CmI8F8k0B0Cp+q1eezo3cswszJH1DN0djgzSlo0hjuuCmyeI+1XOYLl4wg==",
"_location": "/rollup",
"_phantomChildren": {},
"_requested": {
"type": "range",
"registry": true,
"raw": "rollup@^0.58.2",
"name": "rollup",
"escapedName": "rollup",
"rawSpec": "^0.58.2",
"saveSpec": null,
"fetchSpec": "^0.58.2"
},
"_requiredBy": [
"#DEV:/"
],
"_resolved": "https://registry.npmjs.org/rollup/-/rollup-0.58.2.tgz",
"_shasum": "2feddea8c0c022f3e74b35c48e3c21b3433803ce",
"_spec": "rollup@^0.58.2",
"_where": "/Users/stefanfejes/Projects/30-seconds-of-python-code",
"author": {
"name": "Rich Harris"
},
"bin": {
"rollup": "./bin/rollup"
},
"bugs": {
"url": "https://github.com/rollup/rollup/issues"
},
"bundleDependencies": false,
"contributors": [
{
"name": "Oskar Segersvärd",
"email": "victorystick@gmail.com"
},
{
"name": "Bogdan Chadkin",
"email": "trysound@yandex.ru"
}
],
"dependencies": {
"@types/estree": "0.0.38",
"@types/node": "*"
},
"deprecated": false,
"description": "Next-generation ES6 module bundler",
"devDependencies": {
"@types/acorn": "^4.0.3",
"@types/chokidar": "^1.7.5",
"@types/minimist": "^1.2.0",
"@types/pretty-ms": "^3.0.0",
"acorn": "^5.5.3",
"acorn-dynamic-import": "^3.0.0",
"ansi-escapes": "^3.1.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",
"date-time": "^2.1.0",
"eslint": "^4.19.1",
"eslint-plugin-import": "^2.11.0",
"execa": "^0.10.0",
"fixturify": "^0.3.4",
"hash.js": "^1.1.3",
"husky": "^0.14.3",
"immutable": "^3.8.2",
"is-reference": "^1.1.0",
"istanbul": "^0.4.3",
"lint-staged": "^7.0.4",
"locate-character": "^2.0.5",
"magic-string": "^0.24.0",
"minimist": "^1.2.0",
"mocha": "^5.1.0",
"prettier": "^1.12.0",
"pretty-ms": "^3.1.0",
"remap-istanbul": "^0.11.0",
"require-relative": "^0.8.7",
"rollup": "^0.57.1",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-string": "^2.0.0",
"rollup-plugin-typescript": "^0.8.1",
"rollup-pluginutils": "^2.0.1",
"rollup-watch": "^4.3.1",
"sander": "^0.6.0",
"signal-exit": "^3.0.2",
"source-map": "^0.6.1",
"source-map-support": "^0.5.4",
"sourcemap-codec": "^1.4.1",
"typescript": "^2.8.1",
"uglify-js": "^3.3.21"
},
"files": [
"dist/rollup.browser.js",
"dist/rollup.es.js",
"dist/rollup.js",
"dist/**/*.d.ts",
"bin/rollup",
"README.md"
],
"homepage": "https://github.com/rollup/rollup",
"jsnext:main": "dist/rollup.es.js",
"keywords": [
"modules",
"bundler",
"bundling",
"es6",
"optimizer"
],
"license": "MIT",
"lint-staged": {
"*.ts": [
"prettier --write",
"git add"
]
},
"main": "dist/rollup.js",
"module": "dist/rollup.es.js",
"name": "rollup",
"repository": {
"type": "git",
"url": "git+https://github.com/rollup/rollup.git"
},
"scripts": {
"build": "git rev-parse HEAD > .commithash && rollup -c && cp src/rollup/types.d.ts dist/rollup.d.ts && chmod a+x bin/rollup",
"ci": "npm run test-coverage && codecov < coverage/coverage-remapped.lcov",
"lint": "eslint src browser bin test/test.js test/*/index.js test/utils test/**/_config.js",
"perf": "npm run build && node --expose-gc scripts/perf.js",
"perf:debug": "node --inspect-brk scripts/perf-debug.js",
"perf:init": "node scripts/perf-init.js",
"postcommit": "git reset",
"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",
"prebuild": "rm -rf dist",
"precommit": "lint-staged",
"prepare": "npm run build",
"prepublishOnly": "npm run lint && npm run test && npm run test:leak",
"pretest": "npm run build",
"pretest-coverage": "npm run build",
"pretest:typescript": "rm -rf test/typescript/dist && cp -r dist test/typescript/",
"test": "npm run test:only && npm run test:typescript",
"test-coverage": "rm -rf coverage/* && istanbul cover --report json node_modules/.bin/_mocha -- -u exports -R spec test/test.js",
"test:leak": "node --expose-gc test/leak/index.js",
"test:only": "mocha",
"test:quick": "mocha -b",
"test:typescript": "tsc -p test/typescript",
"watch": "rollup -cw"
},
"typings": "dist/rollup.d.ts",
"version": "0.58.2"
}