forked from assaf/zombie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.77 KB
/
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
48
49
50
51
52
53
54
55
56
{ "name": "zombie",
"version": "2.0.0-alpha4",
"description": "Insanely fast, full-stack, headless browser testing using Node.js",
"homepage": "http://zombie.labnotes.org/",
"author": "Assaf Arkin <assaf@labnotes.org> (http://labnotes.org/)",
"contributors": [
"Bob Lail <bob.lailfamily@gmail.com> (http://boblail.tumblr.com/)",
"Brian McDaniel (https://github.com/brianmcd)",
"Damian Janowski",
"José Valim <jose.valim@plataformatec.com.br> (http://blog.plataformatec.com.br/)"
],
"keywords": [ "test", "tests", "testing", "TDD", "spec", "specs", "BDD", "headless", "browser",
"html", "html5", "dom", "css", "javascript", "integration", "ajax", "full-stack", "DSL" ],
"main": "lib/zombie",
"scripts": {
"prepublish": "make build",
"test": "./node_modules/.bin/mocha"
},
"engines": {
"node": ">= 0.6.0"
},
"dependencies": {
"contextify": "~0.1.3",
"eventsource": "~0.0.5",
"html5": "~0.3.8",
"jsdom": "~0.2.15",
"mime": "~1.2.7",
"ms": "~0.1.0",
"q": "~0.8.8",
"request": "~2.10.0",
"tough-cookie": "~0.9.13",
"ws": "~0.4.21"
},
"devDependencies": {
"coffee-script": "~1.3.3",
"docco": "~0.4.0",
"express": "~2.5.11",
"highlight": "~0.2.3",
"mocha": "~1.4.2",
"replay": "~1.5.3",
"requirejs": "~2.0.6",
"ronn": "~0.3.8"
},
"repository": {
"type": "git",
"url": "http://github.com/assaf/zombie"
},
"bugs": {
"url": "http://github.com/assaf/zombie/issues"
},
"licenses": [
{ "type": "MIT",
"url": "http://github.com/assaf/zombie/blob/master/MIT-LICENSE"
}
]
}