Skip to content

Commit ec99e50

Browse files
committed
Adding publish-please
and update version to 0.9.4 (bug fix for lat and lon test issues)
1 parent b7ca924 commit ec99e50

File tree

2 files changed

+30
-4
lines changed

2 files changed

+30
-4
lines changed

.publishrc

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"validations": {
3+
"vulnerableDependencies": true,
4+
"uncommittedChanges": true,
5+
"untrackedFiles": true,
6+
"sensitiveData": true,
7+
"branch": "master",
8+
"gitTag": true
9+
},
10+
"confirm": true,
11+
"publishTag": "latest",
12+
"prePublishScript": "npm test"
13+
}

package.json

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,22 @@
11
{
22
"name": "node-uber",
3-
"version": "0.9.3",
3+
"version": "0.9.4",
44
"description": "A Node.js wrapper for Uber API",
55
"main": "index.js",
66
"scripts": {
7-
"test": "gulp"
7+
"test": "gulp",
8+
"publish-please": "publish-please",
9+
"prepublish": "publish-please guard"
810
},
911
"repository": {
1012
"type": "git",
1113
"url": "git://github.com/shernshiou/node-uber.git"
1214
},
13-
"author": "Shern Shiou Tan <[email protected]> (http://blog.shernshiou.com)",
15+
"author": {
16+
"name": "Shern Shiou Tan",
17+
"email": "[email protected]",
18+
"url": "http://blog.shernshiou.com"
19+
},
1420
"contributors": [
1521
{
1622
"name": "Alexander Graebe",
@@ -34,8 +40,15 @@
3440
"istanbul": "^0.4.3",
3541
"mocha": "^2.4.5",
3642
"nock": "^8.0.0",
43+
"publish-please": "^2.0.0",
3744
"sinon": "^1.17.3",
3845
"sinon-chai": "^2.8.0",
3946
"superagent": "^1.8.3"
40-
}
47+
},
48+
"bugs": {
49+
"url": "https://github.com/shernshiou/node-uber/issues"
50+
},
51+
"readme": "README.md",
52+
"homepage": "https://github.com/shernshiou/node-uber#readme",
53+
4154
}

0 commit comments

Comments
 (0)