UNPKG

1.52 kBJSONView Raw
1{
2 "name": "codacy-coverage",
3 "version": "3.3.0",
4 "description": "Code Coverage reporter for Codacy.com",
5 "keywords": [
6 "codacy",
7 "coverage",
8 "code coverage",
9 "codacy.com"
10 ],
11 "homepage": "https://github.com/codacy/node-codacy-coverage",
12 "repository": {
13 "type": "git",
14 "url": "git://github.com/codacy/node-codacy-coverage.git"
15 },
16 "bugs": {
17 "url": "https://github.com/codacy/node-codacy-coverage/issues"
18 },
19 "author": {
20 "name": "David Pate",
21 "email": "davidtpate@gmail.com",
22 "url": "https://github.com/DavidTPate"
23 },
24 "contributors": [],
25 "license": "MIT",
26 "main": "index.js",
27 "bin": {
28 "codacy-coverage": "./bin/codacy-coverage.js"
29 },
30 "engines": {
31 "node": ">= 8.12.0"
32 },
33 "dependencies": {
34 "bluebird": "^3.5.x",
35 "commander": "^2.x",
36 "joi": "^13.x",
37 "lcov-parse": "^1.x",
38 "jacoco-parse": "^2.x",
39 "lodash": "^4.17.4",
40 "log-driver": "^1.x",
41 "request": "^2.88.0",
42 "request-promise": "^4.x"
43 },
44 "devDependencies": {
45 "chai": "^4.1.x",
46 "chai-as-promised": "^7.1.x",
47 "dirty-chai": "^2.x",
48 "mocha": "^4.x",
49 "nock": "^9.1.x",
50 "istanbul": "~0.x",
51 "jsinspect": "~0.x",
52 "eslint": "^4.x"
53 },
54 "scripts": {
55 "lint-style": "eslint .",
56 "lint-dependencies": "npm audit",
57 "test": "istanbul cover node_modules/mocha/bin/_mocha -- --check-leaks --timeout 30000 --reporter spec test/",
58 "test-all": "npm run lint-style && npm run lint-dependencies && npm run test"
59 }
60}