forked from stanleyhlng/mocha-multi-reporters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.08 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
{
"name": "mocha-multi-reporters",
"version": "1.1.7",
"description": "Generate multiple mocha reports in a single mocha execution.",
"main": "index.js",
"scripts": {
"devtest": "jenkins-mocha --no-coverage --timeout 5000 tests/**/*.test.js*",
"lint": "eslint --ext .js .",
"test": "JENKINS_MOCHA_COVERAGE=true jenkins-mocha --timeout 5000 tests/**/*.test.js*"
},
"author": "Stanley Ng <[email protected]",
"repository": {
"type": "git",
"url": "https://github.com/stanleyhlng/mocha-multi-reporters"
},
"license": "MIT",
"dependencies": {
"debug": "^3.1.0",
"lodash": "^4.16.4"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.14",
"eslint": "^3.9.0",
"eslint-config-defaults": "^9.0.0",
"jenkins-mocha": "^2.6.0",
"mocha": "^3.1.2",
"mocha-lcov-reporter": "^1.2.0",
"pre-commit": "^1.1.3",
"root-require": "^0.3.1",
"sinon": "^1.17.6"
},
"keywords": [
"mocha",
"reporter"
],
"pre-commit": [
"lint",
"test"
],
"eslintConfig": {
"extends": "defaults"
}
}