UNPKG

2.79 kBJSONView Raw
1{
2 "name": "coveralls",
3 "description": "takes json-cov output into stdin and POSTs to coveralls.io",
4 "version": "3.1.1",
5 "keywords": [
6 "coverage",
7 "coveralls"
8 ],
9 "author": "Gregg Caines",
10 "license": "BSD-2-Clause",
11 "repository": {
12 "type": "git",
13 "url": "git://github.com/nickmerwin/node-coveralls.git"
14 },
15 "bugs": {
16 "url": "https://github.com/nickmerwin/node-coveralls/issues"
17 },
18 "homepage": "https://github.com/nickmerwin/node-coveralls#readme",
19 "maintainers": [
20 "Nick Merwin <nick@coveralls.io> (https://coveralls.io)"
21 ],
22 "contributors": [
23 "Gregg Caines <gregg@caines.ca> (http://caines.ca)",
24 "Joshua Ma <github@joshma.com> (http://joshma.com)",
25 "Alan Gutierrez <alan@prettyrobots.com> (http://www.prettyrobots.com/)",
26 "Kir Belevich (https://github.com/svg)",
27 "elliotcable <github@elliottcable.name> (http://elliottcable.name/)",
28 "Slotos <slotos@gmail.com> (http://slotos.net)",
29 "mattjmorrison <mattjmorrison@mattjmorrison.com> (http://mattjmorrison.com)",
30 "Arpad Borsos <arpad.borsos@googlemail.com> (http://swatinem.de/)",
31 "Adam Moss (https://github.com/adam-moss)"
32 ],
33 "bin": {
34 "coveralls": "./bin/coveralls.js"
35 },
36 "main": "index.js",
37 "directories": {
38 "test": "test"
39 },
40 "scripts": {
41 "lint": "xo",
42 "mocha": "_mocha -b -R spec",
43 "test-cov": "nyc npm run mocha",
44 "test-coveralls": "nyc npm run mocha && shx cat ./coverage/lcov.info | node ./bin/coveralls.js --verbose",
45 "test": "npm run lint && npm run mocha"
46 },
47 "dependencies": {
48 "js-yaml": "^3.13.1",
49 "lcov-parse": "^1.0.0",
50 "log-driver": "^1.2.7",
51 "minimist": "^1.2.5",
52 "request": "^2.88.2"
53 },
54 "devDependencies": {
55 "glob-parent": ">=5.1.2",
56 "mocha": "^6.2.3",
57 "nyc": "^14.1.1",
58 "should": "^9.0.2",
59 "shx": "^0.3.2",
60 "sinon": "^8.1.1",
61 "trim-newlines": ">=3.0.1",
62 "xo": "^0.24.0"
63 },
64 "engines": {
65 "node": ">=6"
66 },
67 "files": [
68 "bin/coveralls.js",
69 "lib/*.js",
70 "index.js"
71 ],
72 "nyc": {
73 "reporter": [
74 "lcov",
75 "text-summary"
76 ]
77 },
78 "xo": {
79 "space": true,
80 "ignores": [
81 "test/fixtures/"
82 ],
83 "rules": {
84 "camelcase": "off",
85 "capitalized-comments": "off",
86 "handle-callback-err": "error",
87 "import/order": "off",
88 "no-negated-condition": "off",
89 "object-curly-spacing": [
90 "error",
91 "always"
92 ],
93 "quote-props": [
94 "error",
95 "consistent"
96 ],
97 "space-before-function-paren": [
98 "error",
99 "never"
100 ],
101 "spaced-comment": "off",
102 "unicorn/filename-case": "off"
103 },
104 "overrides": [
105 {
106 "files": "test/*.js",
107 "envs": [
108 "mocha"
109 ]
110 }
111 ]
112 }
113}