-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
37 lines (37 loc) · 900 Bytes
/
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
{
"name": "mocha-circleci-reporter",
"version": "0.0.3",
"description": "A mocha reporter that supports Circle CI, via a combined jUnit and Spec reporter output.",
"main": "index.js",
"scripts": {
"test": "node_modules/.bin/mocha --harmony test/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sandcastle/mocha-circleci-reporter.git"
},
"keywords": [
"mocha",
"reporter",
"ci",
"circle",
"ci",
"build",
"js",
"javascript"
],
"author": "Glenn Morton",
"license": "MIT",
"bugs": {
"url": "https://github.com/sandcastle/mocha-circleci-reporter/issues"
},
"homepage": "https://github.com/sandcastle/mocha-circleci-reporter#readme",
"devDependencies": {
"assert": "^1.3.0",
"test-console": "^1.0.0"
},
"dependencies": {
"mocha": "^5.1.1",
"mocha-junit-reporter": "^1.17.0"
}
}