UNPKG

jsdomify

Version:

Create a JSDom instance for browserless testing, exposing some handling methods

67 lines (66 loc) 1.86 kB
{ "name": "jsdomify", "version": "3.1.1", "description": "Create a JSDom instance for browserless testing, exposing some handling methods", "main": "lib/jsdomify.js", "directories": { "test": "test" }, "dependencies": { "jsdom": "9.5.0" }, "devDependencies": { "babel-cli": "^6.14.0", "babel-core": "^6.14.0", "babel-preset-es2015": "^6.14.0", "babel-preset-react": "^6.11.1", "coveralls": "^2.11.12", "eslint": "^3.3.1", "eslint-config-airbnb": "^10.0.1", "eslint-plugin-import": "^1.14.0", "eslint-plugin-jsx-a11y": "^2.1.0", "eslint-plugin-react": "^6.1.2", "isparta": "^4.0.0", "istanbul": "^0.4.5", "mocha": "^3.0.2", "pre-commit": "^1.1.3", "react": "^15.3.1", "react-addons-test-utils": "^15.3.1", "react-dom": "^15.3.1", "unexpected": "^10.16.0" }, "scripts": { "compile": "babel src/ --out-dir lib/", "coverage": "babel-node node_modules/.bin/isparta cover --report cobertura --report html node_modules/.bin/_mocha --report lcovonly", "lint:all": "eslint src/", "lint:cached": "LIST=`git diff --cached --name-only | grep \\.js | grep -v json`; if [ \"$LIST\" ]; then eslint $LIST; fi", "prepublish": "npm run compile", "test": "mocha --compilers js:babel-core/register", "travis": "npm run lint:all && npm run coverage" }, "pre-commit": [ "lint:cached" ], "files": [ "lib/jsdomify.js" ], "repository": { "type": "git", "url": "git://github.com/dmatteo/jsdomify.git" }, "keywords": [ "jsdom", "dom", "test", "html", "testing", "mocha" ], "author": "Domenico Matteo <matteo.domenico@gmail.com>", "license": "MIT", "readme": "README.md", "bugs": { "url": "https://github.com/dmatteo/jsdomify/issues" }, "homepage": "https://github.com/dmatteo/jsdomify" }