Skip to content

Commit 2fde860

Browse files
greenkeeper[bot]linuxwolf
authored andcommitted
Update: maintain dependencies via Greenkeeper
* chore(package): update dependencies https://greenkeeper.io/ * docs(readme): add Greenkeeper badge https://greenkeeper.io/ * chore: end testing node < 4
1 parent 8a586bd commit 2fde860

File tree

3 files changed

+18
-19
lines changed

3 files changed

+18
-19
lines changed

.travis.yml

-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@ addons:
66
packages:
77
- g++-4.8
88
node_js:
9-
- '0.10'
10-
- '0.12'
11-
- iojs
129
- '4'
1310
- '5'
1411
- '6'

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# node-jose #
22

3+
[![Greenkeeper badge](https://badges.greenkeeper.io/cisco/node-jose.svg)](https://greenkeeper.io/)
4+
35
A JavaScript implementation of the JSON Object Signing and Encryption (JOSE) for current web browsers and node.js-based servers. This library implements (wherever possible) all algorithms, formats, and options in [JWS](https://tools.ietf.org/html/rfc7515 "Jones, M., J. Bradley and N. Sakimura, 'JSON Web Signature (JWS)' RFC 7515, May 2015"), [JWE](https://tools.ietf.org/html/rfc7516 "Jones, M. and J. Hildebrand 'JSON Web Encryption (JWE)', RFC 7516, May 2015"), [JWK](https://tools.ietf/html/rfc7517 "Jones, M., 'JSON Web Key (JWK)', RFC 7517, May 2015"), and [JWA](https://tools.ietf/html/rfc7518 "Jones, M., 'JSON Web Algorithms (JWA)', RFC 7518, May 2015") and uses native cryptographic support ([WebCrypto API](http://www.w3.org/TR/WebCryptoAPI/) or node.js' "[crypto](https://nodejs.org/api/crypto.html)" module) where feasible.
46

57
<!-- START doctoc generated TOC please keep comment here to allow auto update -->

package.json

+16-16
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
],
2727
"license": "Apache-2.0",
2828
"dependencies": {
29-
"es6-promise": "^3.1.2",
29+
"es6-promise": "^4.0.5",
3030
"jsbn": "^0.1.0",
3131
"lodash.assign": "^4.0.8",
3232
"lodash.clone": "^4.3.2",
@@ -41,42 +41,42 @@
4141
"long": "^3.1.0",
4242
"node-forge": "https://github.com/linuxwolf/forge/archive/browserify.tar.gz",
4343
"urlsafe-base64": "https://github.com/linuxwolf/urlsafe-base64/archive/encoding.tar.gz",
44-
"uuid": "^2.0.1"
44+
"uuid": "^3.0.1"
4545
},
4646
"devDependencies": {
4747
"browserify-istanbul": "^2.0.0",
4848
"chai": "^3.5.0",
4949
"conventional-changelog": "^1.1.0",
5050
"del": "^2.2.0",
5151
"gulp": "^3.8.10",
52-
"gulp-eslint": "^2.0.0",
53-
"gulp-istanbul": "^0.10.4",
54-
"gulp-mocha": "^2.0.0",
52+
"gulp-eslint": "^3.0.1",
53+
"gulp-istanbul": "^1.1.1",
54+
"gulp-mocha": "^3.0.1",
5555
"gulp-rename": "^1.2.0",
56-
"gulp-uglify": "^1.1.0",
56+
"gulp-uglify": "^2.0.1",
5757
"gulp-util": "^3.0.7",
5858
"istanbul": "^0.4.0",
5959
"jose-cookbook": "git+https://github.com/ietf-jose/cookbook.git",
6060
"json-loader": "^0.5.4",
6161
"karma": "^1.2.0",
62-
"karma-chrome-launcher": "^0.2.3",
63-
"karma-coverage": "^0.5.3",
64-
"karma-firefox-launcher": "^0.1.4",
65-
"karma-ie-launcher": "^0.2.0",
66-
"karma-mocha": "^0.2.2",
62+
"karma-chrome-launcher": "^2.0.0",
63+
"karma-coverage": "^1.1.1",
64+
"karma-firefox-launcher": "^1.0.0",
65+
"karma-ie-launcher": "^1.0.0",
66+
"karma-mocha": "^1.3.0",
6767
"karma-mocha-reporter": "^2.0.0",
68-
"karma-safari-launcher": "^0.1.1",
69-
"karma-sauce-launcher": "^0.3.1",
70-
"karma-webpack": "^1.8.0",
68+
"karma-safari-launcher": "^1.0.0",
69+
"karma-sauce-launcher": "^1.1.0",
70+
"karma-webpack": "^2.0.2",
7171
"lodash.bind": "^4.1.3",
7272
"lodash.clonedeep": "^4.3.2",
7373
"lodash.foreach": "^4.2.0",
74-
"mocha": "^2.1.0",
74+
"mocha": "^3.2.0",
7575
"run-sequence": "^1.0.2",
7676
"watchify": "^3.7.0",
7777
"webpack": "^1.13.2",
7878
"webpack-stream": "^3.2.0",
79-
"yargs": "^4.6.0"
79+
"yargs": "^6.6.0"
8080
},
8181
"browser": {
8282
"crypto": false

0 commit comments

Comments
 (0)