Skip to content

Commit

Permalink
package tweaks
Browse files Browse the repository at this point in the history
* ignoring non-necessary files from npm package
* ran fixpack
* ignore .nyc_output
  • Loading branch information
Jeff Dickey committed Jun 1, 2017
1 parent f3d60e8 commit 04b306c
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 13 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -1 +1,2 @@
node_modules/
.nyc_output/
30 changes: 17 additions & 13 deletions package.json
@@ -1,17 +1,11 @@
{
"name": "heroku-kafka",
"version": "2.9.4",
"description": "heroku plugin to manage heroku kafka",
"main": "index.js",
"version": "2.9.4",
"author": "Heroku kafka@heroku.com",
"repository": "heroku/heroku-kafka-jsplugin",
"bugs": {
"url": "https://github.com/heroku/heroku-kafka-jsplugin/issues"
},
"keywords": [
"heroku-plugin"
],
"license": "ISC",
"dependencies": {
"co": "4.6.0",
"co-wait": "0.0.0",
Expand All @@ -23,12 +17,6 @@
"no-kafka": "github:hunterloftis/kafka",
"node-spinner": "0.0.4"
},
"scripts": {
"test": "standard && nyc mocha",
"qtest": "mocha",
"standardize": "standard --fix",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
Expand All @@ -40,5 +28,21 @@
"nyc": "^8.1.0",
"proxyquire": "^1.7.10",
"standard": "8.0.0"
},
"files": [
"commands",
"lib"
],
"keywords": [
"heroku-plugin"
],
"license": "ISC",
"main": "commands/index.js",
"repository": "heroku/heroku-kafka-jsplugin",
"scripts": {
"coverage": "nyc report --reporter=text-lcov | coveralls",
"qtest": "mocha",
"standardize": "standard --fix",
"test": "standard && nyc mocha"
}
}

0 comments on commit 04b306c

Please sign in to comment.