You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
1.1 KiB

9 years ago
{
"name": "browser-env",
8 years ago
"version": "2.0.31",
9 years ago
"description": "Simulates a global browser environment using jsdom",
8 years ago
"main": "src/index.js",
"engines": {
"node": ">=4"
},
9 years ago
"scripts": {
"test": "nyc ava test",
9 years ago
"lint": "eslint src",
8 years ago
"coverage": "nyc report --reporter=text-lcov | coveralls"
9 years ago
},
9 years ago
"eslintConfig": {
"extends": "lukechilds",
"rules": {
"prefer-rest-params": "off"
}
9 years ago
},
9 years ago
"repository": {
"type": "git",
"url": "git+https://github.com/lukechilds/browser-env.git"
9 years ago
},
"keywords": [
"simulate",
"global",
"node",
"browser",
"environment",
"env"
9 years ago
],
"author": "Luke Childs <lukechilds123@gmail.com> (http://lukechilds.co.uk)",
"license": "MIT",
"bugs": {
"url": "https://github.com/lukechilds/browser-env/issues"
9 years ago
},
"homepage": "https://github.com/lukechilds/browser-env#readme",
"dependencies": {
"window": "3.1.5"
9 years ago
},
"devDependencies": {
"ava": "^0.20.0",
"coveralls": "^2.11.13",
"eslint": "^4.1.0",
"eslint-config-lukechilds": "^1.9.0",
"nyc": "^11.0.1"
}
9 years ago
}