Skip to content

Commit

Permalink
v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jameshulse committed Oct 7, 2017
1 parent 8a7e9a8 commit 1b19c73
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mr-time",
"version": "0.3.0",
"version": "0.4.0",
"description": "Tiny fluent time conversions package for better code readability Edit",
"keywords": [
"time",
Expand All @@ -9,7 +9,7 @@
"readability",
"code-quality"
],
"main": "index.js",
"main": "build/index.js",
"author": "James Hulse <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/jameshulse/mr-time",
Expand All @@ -18,13 +18,19 @@
"url": "https://github.com/jameshulse/mr-time"
},
"scripts": {
"test": "jest ."
"test": "jest .",
"build": "babel index.js -d ./build",
"prepublish": "yarn build"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.0",
"coveralls": "^3.0.0",
"jest": "^21.2.1"
},
"jest": {
"collectCoverage": true
}
},
"dependencies": {}
}

0 comments on commit 1b19c73

Please sign in to comment.