forked from thepragmaticidealist/circleci-codeclimate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 726 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 726 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
{
"name": "circleci-codeclimate",
"version": "1.0.0",
"description": "Accompanying repository for the Integrating Code Climate testing with Circle CI article",
"main": "",
"scripts": {
"test": "nyc mocha",
"cover": "nyc --reporter=lcov --reporter=text mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emabishi/circleci-codeclimate.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/emabishi/circleci-codeclimate/issues"
},
"homepage": "https://github.com/emabishi/circleci-codeclimate#readme",
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.6.0",
"mocha": "^6.2.2",
"nyc": "^14.1.1"
}
}