Skip to content
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.

Commit

Permalink
Merge pull request #14 from kafkahw/fix-polyfill
Browse files Browse the repository at this point in the history
Removes the need of adding polyfills when consuming this lib
  • Loading branch information
kafkahw authored Oct 12, 2017
2 parents edd1087 + 5dfe718 commit b5bd51b
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
12 changes: 11 additions & 1 deletion .babelrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
{
"presets": ["es2015"]
"presets": [
["env", {
"targets": {
"browsers": ["last 2 versions", "iOS >=10", "ie >= 10"]
}
}]
],
"plugins": [
"transform-object-assign",
"transform-runtime",
]
}
1 change: 1 addition & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ Cerner Corporation
[@gneatgeek]: https://github.com/gneatgeek
[@calebmeyer]: https://github.com/calebmeyer
[@marcbachmann]: https://github.com/marcbachmann
[@kafkahw]: https://github.com/kafkahw
7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jsonrpc-dispatch",
"version": "2.2.0",
"version": "2.3.0",
"description": "An unopinionated JSONRPC dispatcher for JavaScript",
"main": "lib/src/index.js",
"scripts": {
Expand All @@ -21,14 +21,17 @@
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.13.1",
"babel-preset-es2015": "^6.6.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"chai": "3.5.0",
"eslint": "^2.11.1",
"eslint-config-airbnb-base": "^3.0.1",
"eslint-plugin-import": "^1.8.1",
"mocha": "2.4.5"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"uuid": "^3.0.0"
},
"engines": {
Expand Down

0 comments on commit b5bd51b

Please sign in to comment.