128 lines
3.7 KiB
JSON
128 lines
3.7 KiB
JSON
{
|
|
"_args": [
|
|
[
|
|
"rollup@0.50.1",
|
|
"D:\\Hjm项目\\suyi1111"
|
|
]
|
|
],
|
|
"_from": "rollup@0.50.1",
|
|
"_id": "rollup@0.50.1",
|
|
"_inBundle": false,
|
|
"_integrity": "sha512-XwrnqjSTk+yR8GbP6hiJuVe83MVmBw/gm4P3qP34A10fRXvv6ppl0ZUg1+Pj1tIZSR/aw5ZaILLEiVxwXIAdAw==",
|
|
"_location": "/rollup",
|
|
"_phantomChildren": {},
|
|
"_requested": {
|
|
"type": "version",
|
|
"registry": true,
|
|
"raw": "rollup@0.50.1",
|
|
"name": "rollup",
|
|
"escapedName": "rollup",
|
|
"rawSpec": "0.50.1",
|
|
"saveSpec": null,
|
|
"fetchSpec": "0.50.1"
|
|
},
|
|
"_requiredBy": [
|
|
"/vue-unity-webgl"
|
|
],
|
|
"_resolved": "https://registry.npmjs.org/rollup/-/rollup-0.50.1.tgz",
|
|
"_spec": "0.50.1",
|
|
"_where": "D:\\Hjm项目\\suyi1111",
|
|
"author": {
|
|
"name": "Rich Harris"
|
|
},
|
|
"bin": {
|
|
"rollup": "bin/rollup"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/rollup/rollup/issues"
|
|
},
|
|
"contributors": [
|
|
{
|
|
"name": "Oskar Segersvärd",
|
|
"email": "victorystick@gmail.com"
|
|
},
|
|
{
|
|
"name": "Bogdan Chadkin",
|
|
"email": "trysound@yandex.ru"
|
|
}
|
|
],
|
|
"dependencies": {},
|
|
"description": "Next-generation ES6 module bundler",
|
|
"devDependencies": {
|
|
"acorn": "^5.1.1",
|
|
"ansi-escapes": "^2.0.0",
|
|
"buble": "^0.15.1",
|
|
"chalk": "^2.1.0",
|
|
"codecov.io": "^0.1.6",
|
|
"console-group": "^0.3.1",
|
|
"date-time": "^2.1.0",
|
|
"eslint": "^4.4.1",
|
|
"eslint-plugin-import": "^2.2.0",
|
|
"is-reference": "^1.0.0",
|
|
"istanbul": "^0.4.3",
|
|
"locate-character": "^2.0.0",
|
|
"magic-string": "^0.22.4",
|
|
"minimist": "^1.2.0",
|
|
"mocha": "^3.0.0",
|
|
"pretty-ms": "^3.0.0",
|
|
"remap-istanbul": "^0.9.5",
|
|
"require-relative": "^0.8.7",
|
|
"rollup": "^0.48.0",
|
|
"rollup-plugin-buble": "^0.15.0",
|
|
"rollup-plugin-commonjs": "^8.0.2",
|
|
"rollup-plugin-json": "^2.3.0",
|
|
"rollup-plugin-node-resolve": "^3.0.0",
|
|
"rollup-plugin-replace": "^1.1.1",
|
|
"rollup-plugin-string": "^2.0.0",
|
|
"rollup-pluginutils": "^2.0.1",
|
|
"rollup-watch": "^4.3.1",
|
|
"sander": "^0.6.0",
|
|
"signal-exit": "^3.0.2",
|
|
"source-map": "^0.5.6",
|
|
"source-map-support": "^0.4.15",
|
|
"sourcemap-codec": "^1.3.0",
|
|
"uglify-js": "^3.0.19"
|
|
},
|
|
"files": [
|
|
"dist/rollup.browser.js",
|
|
"dist/rollup.es.js",
|
|
"dist/rollup.js",
|
|
"bin/rollup",
|
|
"README.md"
|
|
],
|
|
"homepage": "https://github.com/rollup/rollup",
|
|
"jsnext:main": "dist/rollup.es.js",
|
|
"keywords": [
|
|
"modules",
|
|
"bundler",
|
|
"bundling",
|
|
"es6",
|
|
"optimizer"
|
|
],
|
|
"license": "MIT",
|
|
"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 && chmod a+x bin/rollup",
|
|
"ci": "npm run test-coverage && codecov < coverage/coverage-remapped.lcov",
|
|
"lint": "eslint src browser test/test.js test/*/index.js test/utils test/**/_config.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",
|
|
"prepare": "npm run build",
|
|
"prepublishOnly": "npm run lint && npm run test:only && npm run test:leak",
|
|
"pretest": "npm run build",
|
|
"pretest-coverage": "npm run build",
|
|
"test": "npm run test:only",
|
|
"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": "rollup -c && mocha",
|
|
"watch": "rollup -cw"
|
|
},
|
|
"version": "0.50.1"
|
|
}
|