Skip to content

Commit

Permalink
refactor(package): fix package generation scripts and version
Browse files Browse the repository at this point in the history
  • Loading branch information
jaebradley committed Jun 12, 2018
1 parent f7ba7d5 commit c6c2ff8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ coverage/**
npm-debug.log
commitlint.config.js
*.test.js
**/__mocks__/**

.DS_Store
.eslintcache
Expand Down
13 changes: 8 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "uber-cli",
"description": "Uber CLI",
"version": "0.0.3",
"description": "CLI for Uber price and time estimates",
"version": "0.0.0-development",
"author": "Jae Bradley",
"bin": {
"uber": "build/executables/uber.js"
Expand Down Expand Up @@ -40,7 +40,10 @@
},
"homepage": "https://github.com/jaebradley/uber-cli",
"keywords": [
"uber"
"uber",
"uber cli",
"uber price",
"uber time"
],
"jest": {
"testEnvironment": "node",
Expand All @@ -61,10 +64,10 @@
"codecov": "codecov",
"commitmsg": "commitlint -e $GIT_PARAMS",
"build": "babel src/ -d build/ --delete-dir-on-start",
"build:prod": "BABEL_ENV=production npm run compile",
"build:prod": "BABEL_ENV=production npm run build",
"lint": "eslint --ext .js .",
"test": "jest",
"prepublishOnly": "npm run compile:prod",
"prepublishOnly": "npm run build:prod",
"gc": "commit",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
Expand Down

0 comments on commit c6c2ff8

Please sign in to comment.