UNPKG

chai-autoload-plugins

Version:

Automatically load chai plugins declared in package.json

65 lines (64 loc) 1.85 kB
{ "name": "chai-autoload-plugins", "version": "0.1.0", "description": "Automatically load chai plugins declared in package.json", "license": "ISC", "repository": "amercier/chai-autoload-plugins", "author": "Alex Mercier <pro.alexandre.mercier@gmail.com> (http://amercier.com)", "engines": { "node": ">=4.0" }, "scripts": { "transpile": "rimraf dist && babel src -d dist", "prepublish": "npm run transpile", "doc": "rimraf esdoc && esdoc -c esdoc.json", "lint": "eslint .", "mocha": "mocha specs/unit --recursive --compilers js:babel-register", "start": "export NODE_ENV=development; npm run mocha -- --watch --growl", "test": "export NODE_ENV=test; npm run lint && rimraf coverage && nyc npm run mocha", "test-integration": "for t in $(ls specs/integration | grep -v shared); do echo \"### $t\"; rimraf \"specs/integration/$t/node_modules/chai-autoload-plugins\" && (cd \"specs/integration/$t\" && npm install && npm test) || exit 1; done" }, "files": [ "dist" ], "main": "dist/lib/index.js", "keywords": [ "chai", "auto", "load", "plugins", "mocha", "jasmine", "jest" ], "peerDependencies": { "chai": "*" }, "devDependencies": { "babel-cli": "^6.16.0", "babel-core": "^6.17.0", "babel-plugin-istanbul": "^2.0.3", "babel-preset-latest": "^6.16.0", "babel-register": "^6.16.3", "chai": "^3.5.0", "codeclimate-test-reporter": "^0.4.0", "codecov": "^1.0.1", "esdoc": "^0.4.8", "eslint": "^3.8.0", "eslint-config-airbnb-base": "^9.0.0", "eslint-plugin-import": "^2.0.1", "mocha": "^3.1.2", "nyc": "^8.3.1", "rimraf": "^2.5.4", "sinon": "^1.17.6" }, "nyc": { "sourceMap": false, "instrument": false, "reporter": [ "lcovonly", "html", "text" ] } }