This repository has been archived by the owner on Apr 8, 2019. It is now read-only.
forked from assaf/zombie
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.61 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
57
58
59
60
61
62
63
64
{ "name": "zombie",
"version": "0.9.5",
"description": "Insanely fast, full-stack, headless browser testing using Node.js",
"homepage": "http://zombie.labnotes.org/",
"author": "Assaf Arkin <[email protected]> (http://labnotes.org/)",
"contributors": [
"Bob Lail <[email protected]> (http://boblail.tumblr.com/)",
"Damian Janowski",
"José Valim <[email protected]> (http://blog.plataformatec.com.br/)"
],
"keywords": [ "test", "tests", "testing", "TDD", "spec", "specs", "BDD", "headless", "browser",
"html", "html5", "dom", "css", "javascript", "integration", "ajax", "full-stack" ],
"directories": {
"doc": "./doc",
"lib": "./lib",
"man": "./man7"
},
"files": [
"Cakefile",
"CHANGELOG.md",
"doc",
"lib",
"man7",
"MIT-LICENSE",
"README.md",
"spec",
"src",
"TODO.md",
"xpath",
"wscript"
],
"main": "lib/zombie/index.js",
"scripts": {
"install": "node-waf configure build",
"build": "cake build",
"test": "cake test"
},
"engines": {
"node": ">= 0.2.6"
},
"dependencies": {
"html5": "0.2.14",
"jsdom": "0.1.23",
"mime": "1.2.1",
"websocket-client": "1.0.0"
},
"devDependencies": {
"coffee-script": ">= 1.0.1",
"docco": "0.3.0",
"express": "2.0.0",
"ronn": "0.3.6",
"vows": "0.5.8"
},
"repository": {
"type": "git",
"url": "https://[email protected]/assaf/zombie.git"
},
"bugs": { "url": "http://github.com/assaf/zombie/issues" },
"licenses": [
{ "type": "MIT",
"url": "http://github.com/assaf/zombie/raw/master/MIT-LICENSE"
}
]
}