Skip to content

Commit

Permalink
Next (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
antonybudianto authored Dec 25, 2018
1 parent d6d51db commit 96cc0e5
Show file tree
Hide file tree
Showing 5 changed files with 3,442 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .babelrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"presets": ["env"]
"presets": ["@babel/preset-env"]
}
6 changes: 6 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
language: node_js
node_js:
- "10"
- "8"
script:
- yarn build
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2017 Antony Budianto
Copyright (c) 2018 Antony Budianto

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
16 changes: 9 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
{
"name": "express-firebase-middleware",
"version": "2.0.0",
"version": "3.0.0-0",
"description": "Express middleware for your Firebase applications",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "babel src -d lib --ignore spec.js",
"prerelease": "npm run build",
"release": "np",
"release:next": "npm run release -- --tag=next --any-branch",
"test": "exit 0"
},
"repository": {
Expand All @@ -28,13 +30,13 @@
},
"homepage": "https://github.com/antonybudianto/express-firebase-middleware#readme",
"peerDependencies": {
"express": "^4.16.2",
"firebase-admin": "^5.5.0"
"express": "^4.16.4",
"firebase-admin": "^6.4.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"np": "^2.17.0"
"@babel/cli": "7.2.3",
"@babel/core": "7.2.2",
"@babel/preset-env": "7.2.3",
"np": "3.1.0"
}
}
Loading

0 comments on commit 96cc0e5

Please sign in to comment.