-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
47 lines (47 loc) · 1009 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "window",
"version": "4.2.7",
"description": "Exports a jsdom window object.",
"main": "src/index.js",
"engines": {
"node": ">=4"
},
"scripts": {
"test": "xo && nyc ava",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"xo": {
"extends": "xo-lukechilds"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lukechilds/window.git"
},
"keywords": [
"export",
"jsdom",
"window",
"object",
"simulate",
"node",
"browser",
"environment",
"env"
],
"author": "Luke Childs <[email protected]> (http://lukechilds.co.uk)",
"license": "MIT",
"bugs": {
"url": "https://github.com/lukechilds/window/issues"
},
"homepage": "https://github.com/lukechilds/window#readme",
"dependencies": {
"jsdom": "13.2.0"
},
"devDependencies": {
"ava": "^1.2.0",
"coveralls": "^3.0.0",
"eslint-config-xo-lukechilds": "^1.0.0",
"nyc": "^13.1.0",
"xo": "^0.24.0"
}
}