UNPKG

2 kBJSONView Raw
1{
2 "name": "coveralls",
3 "description": "takes json-cov output into stdin and POSTs to coveralls.io",
4 "keywords": [
5 "coverage",
6 "coveralls"
7 ],
8 "version": "3.1.0",
9 "bugs": {
10 "url": "https://github.com/nickmerwin/node-coveralls/issues"
11 },
12 "scripts": {
13 "lint": "jshint ./lib ./test ./index.js",
14 "mocha": "_mocha -b -R spec",
15 "test-cov": "nyc npm run mocha",
16 "test-coveralls": "nyc npm run mocha && shx cat ./coverage/lcov.info | node ./bin/coveralls.js --verbose",
17 "test": "npm run lint && npm run mocha"
18 },
19 "bin": {
20 "coveralls": "./bin/coveralls.js"
21 },
22 "maintainers": [
23 "Nick Merwin <nick@coveralls.io> (https://coveralls.io)"
24 ],
25 "contributors": [
26 "Gregg Caines <gregg@caines.ca> (http://caines.ca)",
27 "Joshua Ma <github@joshma.com> (http://joshma.com)",
28 "Alan Gutierrez <alan@prettyrobots.com> (http://www.prettyrobots.com/)",
29 "Kir Belevich (https://github.com/svg)",
30 "elliotcable <github@elliottcable.name> (http://elliottcable.name/)",
31 "Slotos <slotos@gmail.com> (http://slotos.net)",
32 "mattjmorrison <mattjmorrison@mattjmorrison.com> (http://mattjmorrison.com)",
33 "Arpad Borsos <arpad.borsos@googlemail.com> (http://swatinem.de/)",
34 "Adam Moss (https://github.com/adam-moss)"
35 ],
36 "dependencies": {
37 "js-yaml": "^3.13.1",
38 "lcov-parse": "^1.0.0",
39 "log-driver": "^1.2.7",
40 "minimist": "^1.2.5",
41 "request": "^2.88.2"
42 },
43 "devDependencies": {
44 "jshint": "^2.11.0",
45 "mocha": "^6.2.3",
46 "nyc": "^14.1.1",
47 "should": "^9.0.2",
48 "shx": "^0.3.2",
49 "sinon": "^7.5.0"
50 },
51 "engines": {
52 "node": ">=6"
53 },
54 "main": "index.js",
55 "directories": {
56 "test": "test"
57 },
58 "repository": {
59 "type": "git",
60 "url": "git://github.com/nickmerwin/node-coveralls.git"
61 },
62 "author": "Gregg Caines",
63 "license": "BSD-2-Clause",
64 "nyc": {
65 "reporter": [
66 "lcov",
67 "text-summary"
68 ]
69 },
70 "files": [
71 "{bin,lib}/*.js",
72 "index.js"
73 ]
74}