UNPKG

1.1 kBJSONView Raw
1{
2 "name": "browser-env",
3 "version": "2.0.26",
4 "description": "Simulates a global browser environment using jsdom",
5 "main": "src/index.js",
6 "engines": {
7 "node": ">=4"
8 },
9 "scripts": {
10 "test": "nyc ava test",
11 "lint": "eslint src",
12 "coverage": "nyc report --reporter=text-lcov | coveralls"
13 },
14 "eslintConfig": {
15 "extends": "lukechilds",
16 "rules": {
17 "prefer-rest-params": "off"
18 }
19 },
20 "repository": {
21 "type": "git",
22 "url": "git+https://github.com/lukechilds/browser-env.git"
23 },
24 "keywords": [
25 "simulate",
26 "global",
27 "node",
28 "browser",
29 "environment",
30 "env"
31 ],
32 "author": "Luke Childs <lukechilds123@gmail.com> (http://lukechilds.co.uk)",
33 "license": "MIT",
34 "bugs": {
35 "url": "https://github.com/lukechilds/browser-env/issues"
36 },
37 "homepage": "https://github.com/lukechilds/browser-env#readme",
38 "dependencies": {
39 "window": "3.1.3"
40 },
41 "devDependencies": {
42 "ava": "^0.18.0",
43 "coveralls": "^2.11.13",
44 "eslint": "^3.5.0",
45 "eslint-config-lukechilds": "^1.9.0",
46 "nyc": "^10.0.0"
47 }
48}