-
Notifications
You must be signed in to change notification settings - Fork 260
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
package.json: reorder properties and add homepage
- Loading branch information
1 parent
affd0f0
commit 3f808ee
Showing
1 changed file
with
27 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,21 @@ | ||
{ | ||
"name": "coveralls", | ||
"description": "takes json-cov output into stdin and POSTs to coveralls.io", | ||
"version": "3.1.0", | ||
"keywords": [ | ||
"coverage", | ||
"coveralls" | ||
], | ||
"version": "3.1.0", | ||
"author": "Gregg Caines", | ||
"license": "BSD-2-Clause", | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/nickmerwin/node-coveralls.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/nickmerwin/node-coveralls/issues" | ||
}, | ||
"scripts": { | ||
"lint": "xo", | ||
"mocha": "_mocha -b -R spec", | ||
"test-cov": "nyc npm run mocha", | ||
"test-coveralls": "nyc npm run mocha && shx cat ./coverage/lcov.info | node ./bin/coveralls.js --verbose", | ||
"test": "npm run lint && npm run mocha" | ||
}, | ||
"bin": { | ||
"coveralls": "./bin/coveralls.js" | ||
}, | ||
"homepage": "https://github.com/nickmerwin/node-coveralls#readme", | ||
"maintainers": [ | ||
"Nick Merwin <[email protected]> (https://coveralls.io)" | ||
], | ||
|
@@ -33,6 +30,20 @@ | |
"Arpad Borsos <[email protected]> (http://swatinem.de/)", | ||
"Adam Moss (https://github.com/adam-moss)" | ||
], | ||
"bin": { | ||
"coveralls": "./bin/coveralls.js" | ||
}, | ||
"main": "index.js", | ||
"directories": { | ||
"test": "test" | ||
}, | ||
"scripts": { | ||
"lint": "xo", | ||
"mocha": "_mocha -b -R spec", | ||
"test-cov": "nyc npm run mocha", | ||
"test-coveralls": "nyc npm run mocha && shx cat ./coverage/lcov.info | node ./bin/coveralls.js --verbose", | ||
"test": "npm run lint && npm run mocha" | ||
}, | ||
"dependencies": { | ||
"js-yaml": "^3.13.1", | ||
"lcov-parse": "^1.0.0", | ||
|
@@ -51,27 +62,17 @@ | |
"engines": { | ||
"node": ">=6" | ||
}, | ||
"main": "index.js", | ||
"directories": { | ||
"test": "test" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/nickmerwin/node-coveralls.git" | ||
}, | ||
"author": "Gregg Caines", | ||
"license": "BSD-2-Clause", | ||
"files": [ | ||
"bin/coveralls.js", | ||
"lib/*.js", | ||
"index.js" | ||
], | ||
"nyc": { | ||
"reporter": [ | ||
"lcov", | ||
"text-summary" | ||
] | ||
}, | ||
"files": [ | ||
"bin/coveralls.js", | ||
"lib/*.js", | ||
"index.js" | ||
], | ||
"xo": { | ||
"space": true, | ||
"ignores": [ | ||
|