UNPKG

broccoli-test-helper

Version:

Test helpers for BroccoliPlugins that make testing build and rebuild behavior dead simple and expect diff friendly.

61 lines (60 loc) 1.85 kB
{ "name": "broccoli-test-helper", "version": "2.0.0", "description": "Test helpers for BroccoliPlugins that make testing build and rebuild behavior dead simple and expect diff friendly.", "homepage": "https://github.com/broccolijs/broccoli-test-helper", "bugs": { "url": "https://github.com/broccolijs/broccoli-test-helper/issues" }, "repository": { "type": "git", "url": "https://github.com/broccolijs/broccoli-test-helper.git" }, "license": "MIT", "author": "Kris Selden", "files": [ "dist", "!dist/tests", "src" ], "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "build": "yarn build-src && yarn link-self && yarn build-tests", "build-src": "tsc", "build-tests": "tsc -p tests/tsconfig.json && multidep tests/multidep.json", "link-self": "yarn link && yarn link broccoli-test-helper", "lint": "tslint -p tsconfig.json && tslint -p tests/tsconfig.json", "prepare": "yarn build", "test": "nyc mocha ./dist/tests/*_test.js", "watch": "concurrently --kill-others 'tsc -w' 'tsc -w -p tests/tsconfig.json' 'mocha --watch dist/tests/'" }, "dependencies": { "@types/tmp": "^0.0.33", "broccoli": "^2.0.0", "fixturify": "^0.3.2", "fs-tree-diff": "^0.5.9", "tmp": "^0.0.33", "walk-sync": "^0.3.3" }, "devDependencies": { "@types/chai": "^4.1.4", "@types/mocha": "^5.2.5", "@types/node": "^10.7.1", "broccoli-fixturify": "^0.3.0", "chai": "^4.1.2", "concurrently": "^3.6.1", "mocha": "^5.2.0", "multidep": "^2.0.2", "nyc": "^12.0.2", "prettier": "^1.14.2", "ts-docs-gen": "^0.2.0", "tslint": "^5.11.0", "tslint-config-prettier": "^1.15.0", "tslint-plugin-prettier": "^1.3.0", "typescript": "^2.9.1" }, "engines": { "node": "6.* || 8.* || >= 10.*" } }