forked from mochajs/mocha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1020 Bytes
/
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": "mocha",
"version": "1.18.2",
"description": "simple, flexible, fun test framework",
"keywords": [
"mocha",
"test",
"bdd",
"tdd",
"tap"
],
"author": "TJ Holowaychuk <tj@vision-media.ca>",
"repository": {
"type": "git",
"url": "git://github.com/visionmedia/mocha.git"
},
"main": "./index",
"bin": {
"mocha": "./bin/mocha",
"_mocha": "./bin/_mocha"
},
"engines": {
"node": ">= 0.4.x"
},
"scripts": {
"test": "make test-all"
},
"dependencies": {
"commander": "2.0.0",
"growl": "1.7.x",
"jade": "0.26.3",
"diff": "1.0.7",
"debug": "*",
"mkdirp": "0.3.5",
"glob": "3.2.3"
},
"devDependencies": {
"should": ">= 2.0.x",
"coffee-script": "1.2"
},
"files": [
"bin",
"images",
"lib",
"index.js",
"mocha.css",
"mocha.js",
"LICENSE"
],
"licenses": [
{
"type": "MIT",
"url": "https://raw.github.com/visionmedia/mocha/master/LICENSE"
}
]
}