forked from glenjamin/mocha-multi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.24 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
{
"name": "mocha-multi",
"version": "1.1.5",
"description": "A bit of a hack to get multiple reporters working with mocha",
"main": "mocha-multi.js",
"scripts": {
"test": "run-s lint verify:*",
"ci": "run-s -c lint verify:*",
"verify:node": "node ./verify.js",
"verify:sh": "./verify all",
"lint": "eslint . --max-warnings 0"
},
"repository": {
"type": "git",
"url": "git://github.com/glenjamin/mocha-multi.git"
},
"keywords": [
"mocha"
],
"author": "Glen Mailer <glenjamin@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/glenjamin/mocha-multi/issues"
},
"homepage": "https://github.com/glenjamin/mocha-multi",
"devDependencies": {
"async": "^3.0.1",
"chalk": "^2.4.2",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-node": "^9.1.0",
"mocha": "^9.0.0",
"npm-run-all": "^4.1.5",
"q": "^1.5.1",
"should": "^13.2.3"
},
"dependencies": {
"debug": "^4.1.1",
"is-string": "^1.0.4",
"lodash.once": "^4.1.1",
"mkdirp": "^0.5.1",
"object-assign": "^4.1.1"
},
"peerDependencies": {
"mocha": ">=2.2.0 <7 || ^9"
},
"engines": {
"node": ">=6.0.0"
}
}