UNPKG

broccoli-rollup

Version:

A broccoli plugin that uses rollup.js on its input

78 lines (77 loc) 2.07 kB
{ "name": "broccoli-rollup", "version": "5.0.0", "description": "A broccoli plugin that uses rollup.js on its input", "keywords": [ "broccoli", "broccoli plugin", "rollup" ], "homepage": "https://github.com/chadhietala/broccoli-rollup#readme", "repository": { "type": "git", "url": "https://github.com/chadhietala/broccoli-rollup" }, "license": "MIT", "author": "Chad Hietala <chadhietala@gmail.com>", "contributors": [ { "name": "Stefan Penner", "email": "stefan.penner@gmail.com" }, { "name": "Kris Selden", "email": "kris.selden@gmail.com" } ], "files": [ "index.js", "index.d.ts", "src", "dist" ], "main": "index.js", "types": "index.d.ts", "scripts": { "build": "tsc", "build:clean": "rm -rf dist && tsc", "lint": "tslint -p tsconfig.json && tslint -p tests/tsconfig.json", "prepare": "yarn build:clean", "report": "nyc report -r text -r lcov", "report:html": "nyc report -r html && open coverage/index.html", "test": "yarn build:clean && yarn lint && yarn test:check && yarn test:coverage", "posttest": "yarn report", "test:check": "tsc -p tests", "test:coverage": "nyc -r lcov qunit tests", "test:fast": "qunit tests" }, "dependencies": { "@types/broccoli-plugin": "^3.0.0", "broccoli-plugin": "^4.0.7", "fs-tree-diff": "^2.0.1", "heimdalljs": "^0.2.6", "node-modules-path": "^1.0.1", "rollup": "^2.50.0", "rollup-pluginutils": "^2.8.1", "symlink-or-copy": "^1.2.0", "walk-sync": "^2.2.0" }, "devDependencies": { "@types/node": "^15.6.1", "@types/qunit": "^2.9.0", "@types/symlink-or-copy": "^1.2.0", "broccoli-merge-trees": "^4.2.0", "broccoli-test-helper": "^2.0.0", "nyc": "^15.1.0", "prettier": "^2.3.0", "qunit": "^2.9.2", "source-map": "0.7.3", "tslint": "^6.1.3", "tslint-config-prettier": "^1.18.0", "tslint-plugin-prettier": "^2.0.1", "typescript": "^4.2.4" }, "engines": { "node": ">=12.0" } }