Skip to content

Commit

Permalink
v3.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
pedronauck committed Mar 6, 2018
1 parent 29601ef commit 3ab594a
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
{
"name": "microrouter",
"description": "🚉 A tiny and functional router for ZEIT's Micro",
"version": "3.1.0",
"version": "3.1.1",
"main": "dist/lib/index.js",
"jsnext:main": "src/lib/index.js",
"scripts": {
"release": "np",
"lint": "eslint ./src/**/*.js",
"build":
"yarn lint && rm -rf dist/* && babel src --ignore *.test.js --out-dir dist --copy-files",
"build": "yarn lint && rm -rf dist/* && babel src --ignore *.test.js --out-dir dist --copy-files",
"test": "nyc ava",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"format": "yarn lint && prettier --write \"src/**/*.js\""
Expand Down Expand Up @@ -41,7 +40,10 @@
"node": ">=6.10.0"
},
"lint-staged": {
"src/**/*.js": ["yarn format", "git add"]
"src/**/*.js": [
"yarn format",
"git add"
]
},
"husky": {
"pre-commit": "lint-staged && npm test"
Expand Down

0 comments on commit 3ab594a

Please sign in to comment.