Skip to content

Commit

Permalink
package.json: reorder properties and add homepage
Browse files Browse the repository at this point in the history
  • Loading branch information
XhmikosR authored and nickmerwin committed May 1, 2020
1 parent affd0f0 commit 3f808ee
Showing 1 changed file with 27 additions and 26 deletions.
53 changes: 27 additions & 26 deletions package.json
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)"
],
Expand All @@ -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",
Expand All @@ -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": [
Expand Down

0 comments on commit 3f808ee

Please sign in to comment.