forked from assaf/zombie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 2.05 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
{ "name": "zombie",
"version": "2.0.0-alpha19",
"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/)",
"Brian McDaniel (https://github.com/brianmcd)",
"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",
"DSL"
],
"main": "lib/zombie",
"scripts": {
"build": "coffee --bare --compile --output lib/zombie src/zombie/*.coffee",
"prepublish": "coffee --bare --compile --output lib/zombie src/zombie/*.coffee",
"postpublish": "rm -rf html man7 lib",
"test": "./node_modules/.bin/mocha"
},
"engines": {
"node": ">= 0.8.0"
},
"dependencies": {
"eventsource": "~0.0.7",
"html5": "~0.3.13",
"jsdom": "~0.8.1",
"mime": "~1.2.9",
"ms": "~0.6.1",
"q": "~0.9.6",
"request": "~2.22.0",
"tough-cookie": "~0.9.15",
"ws": "~0.4.27"
},
"devDependencies": {
"coffee-script": "~1.6.3",
"express": "~3.3.4",
"node-syntaxhighlighter": "~0.8.1",
"mocha": "~1.12.0",
"replay": "~1.7.0",
"requirejs": "~2.1.8",
"robotskirt": "~2.7.1"
},
"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"
}
]
}