forked from jouni-kantola/mocha-stackdriver-reporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.01 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
{
"name": "mocha-stackdriver-reporter-stats",
"version": "0.0.2",
"description": "Mocha reporter to log test results and stats with Google Cloud Logging API",
"main": "index.js",
"author": "Torran Turner <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/miscreancy/mocha-stackdriver-reporter-stats/issues"
},
"homepage": "https://github.com/miscreancy/mocha-stackdriver-reporter-stats",
"keywords": [
"mocha",
"stackdriver",
"reporter"
],
"files": [
"index.js",
"src"
],
"devDependencies": {
"mocha": "^7.2.0"
},
"dependencies": {
"@google-cloud/logging": "^9.1.0",
"nanoid": "^3.1.21"
},
"peerDependencies": {
"mocha": "^6"
},
"scripts": {
"test": "mocha test/*-tests.js --reporter min",
"dryrun": "mocha test/*-tests.js --reporter index.js"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Miscreancy/mocha-stackdriver-reporter-stats.git"
}
}