-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 1.07 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
{
"name": "mochawrapper",
"description": "Easy testing using mocha and assert by Harald Rudell",
"author": "Harald Rudell <[email protected]> (http://www.haraldrudell.com)",
"keywords": ["test", "bdd", "tdd", "mocha", "assert", "nodeunit"],
"homepage": "https://github.com/haraldrudell/mochawrapper",
"version": "0.0.34",
"contributors": [
"Harald Rudell <[email protected]> (http://www.haraldrudell.com)"
],
"dependencies": {
"jade": "*",
"haraldutil": ">= 0.1.5",
"greatjson": ">= 0.0.8",
"uglify-js": "<= 1.3.4",
"mocha2": "*"
},
"devDependencies": {
},
"repository" : {
"type" : "git",
"url" : "https://[email protected]/haraldrudell/mochawrapper.git"
},
"bin": {
"mocha": "./bin/mocha",
"_mocha": "./bin/_mocha",
"mochacoverage": "./bin/mochacoverage",
"addmocha": "./bin/addmocha"
},
"main": "lib/mochawrapper",
"scripts": {
"test": "mocha --ui exports --reporter spec",
"monitor": "mocha --ui exports --reporter min --watch",
"debugtest": "mocha --debug-brk --ui exports --reporter spec",
"coverage": "mochacoverage"
}
}