forked from qltysh-archive/javascript-test-reporter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 946 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 946 Bytes
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
{
"name": "codeclimate-test-reporter",
"version": "0.3.1",
"description": "Code Climate test reporter client for javascript projects",
"main": "index.js",
"scripts": {
"test": "mocha"
},
"bin": {
"codeclimate-test-reporter": "./bin/codeclimate.js"
},
"author": "Noah Davis",
"license": "MIT",
"devDependencies": {
"mocha": "*"
},
"engines": {
"node": ">=0.10.0"
},
"dependencies": {
"lcov-parse": "0.0.10",
"request": "~2.67.0",
"async": "~1.5.2"
},
"repository": {
"type": "git",
"url": "git://github.com/codeclimate/javascript-test-reporter.git"
},
"keywords": [
"coverage",
"testing",
"codeclimate"
],
"bugs": {
"url": "https://github.com/codeclimate/javascript-test-reporter/issues"
},
"homepage": "https://github.com/codeclimate/javascript-test-reporter",
"contributors": [
"Bodhi Philpot <bodhi@theplant.jp> (http://theplant.jp)"
]
}