forked from cult-of-coders/meteor-mocha
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 1.65 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "mocha",
"version": "2.4.5",
"description": "simple, flexible, fun test framework",
"keywords": [
"mocha",
"test",
"bdd",
"tdd",
"tap"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/mochajs/mocha.git"
},
"maintainers": [
"travisjeffery <[email protected]>",
"jbnicolai <[email protected]>",
"boneskull <[email protected]>"
],
"main": "./index",
"bin": {
"mocha": "./bin/mocha",
"_mocha": "./bin/_mocha"
},
"engines": {
"node": ">= 0.8.x"
},
"scripts": {
"test": "meteor/bin/test.sh"
},
"dependencies": {
"commander": "2.3.0",
"debug": "2.2.0",
"diff": "1.4.0",
"escape-string-regexp": "1.0.2",
"glob": "3.2.3",
"growl": "1.8.1",
"jade": "0.26.3",
"mkdirp": "0.5.1",
"supports-color": "1.2.0"
},
"devDependencies": {
"browser-stdout": "^1.2.0",
"browserify": "10.2.4",
"coffee-script": "~1.8.0",
"should": "~8.0.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.7.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-babel": "^5.2.1",
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.0",
"prettier": "1.14.3",
"through2": "~0.6.5"
},
"files": [
"bin",
"images",
"lib",
"index.js",
"mocha.css",
"mocha.js",
"LICENSE"
],
"browser": {
"debug": "./lib/browser/debug.js",
"events": "./lib/browser/events.js",
"tty": "./lib/browser/tty.js"
},
"licenses": [
{
"type": "MIT",
"url": "https://raw.github.com/mochajs/mocha/master/LICENSE"
}
]
}