forked from artsy/benv
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 810 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
{
"name": "benv",
"version": "3.1.0",
"description": "Stub a browser environment and test your client-side code in node.js.",
"main": "index.js",
"engines": {
"node": ">= 4.0"
},
"directories": {
"test": "test"
},
"dependencies": {
"rewire": "^2.3.1",
"jsdom": ">= 4.0"
},
"devDependencies": {
"mocha": "^2.2.1",
"should": "^3.3.2",
"jade": "^1.9.2"
},
"scripts": {
"test": "mocha -r should"
},
"repository": {
"type": "git",
"url": "https://github.com/craigspaeth/benv.git"
},
"keywords": [
"browser",
"tests",
"benv",
"stub",
"jsdom"
],
"author": "Craig Spaeth",
"license": "MIT",
"bugs": {
"url": "https://github.com/craigspaeth/benv/issues"
},
"homepage": "https://github.com/craigspaeth/benv"
}