generated from VilledeMontreal/repository-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 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
{
"name": "mocha-error-reporters",
"version": "1.0.0",
"description": "mocha-error-reporters includes the full error object as JSON in the test report when an error has some meaningful extra information.",
"main": "lib/mochaErrorReporters.js",
"directories": {
"lib": "./lib"
},
"scripts": {
"start": "mocha test/**/*.test.js",
"minExample": "mocha --reporter=min test/testData/testExample.js",
"minWithFullErrorsExample": "mocha --require lib/mochaErrorReporters.js --reporter=minWithFullErrors test/testData/testExample.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VilledeMontreal/mocha-error-reporters"
},
"keywords": [
"mocha",
"reporter",
"error",
"unexpected",
"unhandled",
"full",
"complete"
],
"author": "Stéphane Leblanc",
"license": "MIT",
"homepage": "https://github.com/VilledeMontreal/mocha-error-reporters",
"devDependencies": {
"chai": "4.2.0",
"child_process": "1.0.2",
"mocha": "8.2.1",
"path": "0.12.7"
},
"dependencies": {
"serialize-error": "8.0.0"
}
}