forked from mhevery/jasmine-node
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·30 lines (30 loc) · 1.37 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
{
"name" : "jasmine-node"
, "version" : "1.0.28"
, "description" : "DOM-less simple JavaScript BDD testing framework for Node"
, "homepage" : [ "http://pivotal.github.com/jasmine"
, "https://github.com/mhevery/jasmine-node"]
, "repository" : { "type" : "git"
, "url" : "https://github.com/mhevery/jasmine-node.git"
}
, "keywords" : ["testing", "bdd"]
, "author" : "Misko Hevery <[email protected]>"
, "contributors" : [ "Rajan Agaskar <[email protected]"
, "Christian Williams <[email protected]"
, "Davis W. Frank <[email protected]>"
, "Matteo Collina <[email protected]>"
]
, "maintainers" : "Martin Häger <[email protected]>"
, "contributors" : [ "Mike Swift <[email protected]> (http://theycallmeswift.com)" ]
, "licenses" : ["MIT"]
, "dependencies" : { "coffee-script" : ">=1.0.1"
, "jasmine-reporters" : ">=0.2.0"
, "requirejs" : ">=0.27.1"
, "walkdir" : ">= 0.0.1"
, "underscore" : ">= 1.3.1"
}
, "bin" : "bin/jasmine-node"
, "preferGlobal" : true
, "main" : "lib/jasmine-node"
, "scripts" : { "test" : "node lib/jasmine-node/cli.js spec" }
}