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.
47 lines
1.0 KiB
47 lines
1.0 KiB
{
|
|
"name": "browser-env",
|
|
"version": "3.0.0",
|
|
"description": "Simulates a global browser environment using jsdom",
|
|
"main": "src/index.js",
|
|
"engines": {
|
|
"node": ">=4"
|
|
},
|
|
"scripts": {
|
|
"test": "xo && nyc ava",
|
|
"coverage": "nyc report --reporter=text-lcov | coveralls"
|
|
},
|
|
"xo": {
|
|
"extends": "xo-lukechilds",
|
|
"envs": [
|
|
"browser"
|
|
]
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/lukechilds/browser-env.git"
|
|
},
|
|
"keywords": [
|
|
"simulate",
|
|
"global",
|
|
"node",
|
|
"browser",
|
|
"environment",
|
|
"env"
|
|
],
|
|
"author": "Luke Childs <lukechilds123@gmail.com> (http://lukechilds.co.uk)",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/lukechilds/browser-env/issues"
|
|
},
|
|
"homepage": "https://github.com/lukechilds/browser-env#readme",
|
|
"dependencies": {
|
|
"window": "4.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"ava": "^0.20.0",
|
|
"coveralls": "^2.11.13",
|
|
"eslint-config-xo-lukechilds": "^1.0.0",
|
|
"nyc": "^11.0.2",
|
|
"xo": "^0.18.2"
|
|
}
|
|
}
|
|
|