Update package dependencies
This commit is contained in:
parent
7059cf6b8a
commit
bc1e3146e1
13
CHANGES.md
13
CHANGES.md
|
@ -1,5 +1,18 @@
|
||||||
# ldapjs Changelog
|
# ldapjs Changelog
|
||||||
|
|
||||||
|
## master
|
||||||
|
|
||||||
|
- Update dependencies
|
||||||
|
* assert-plus to 1.0.0
|
||||||
|
* bunyan to 1.8.3
|
||||||
|
* dashdash to 1.14.0
|
||||||
|
* backoff to 2.5.0
|
||||||
|
* once to 1.4.0
|
||||||
|
* vasync to 1.6.4
|
||||||
|
* verror to 1.8.1
|
||||||
|
* dtrace-provider to 0.7.0
|
||||||
|
- Drop any semblence of support for node 0.8.x
|
||||||
|
|
||||||
## 1.0.0
|
## 1.0.0
|
||||||
|
|
||||||
- Update dependencies
|
- Update dependencies
|
||||||
|
|
24
package.json
24
package.json
|
@ -26,27 +26,27 @@
|
||||||
"lib": "./lib"
|
"lib": "./lib"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=0.8"
|
"node": ">=0.10"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"asn1": "0.2.3",
|
"asn1": "0.2.3",
|
||||||
"assert-plus": "0.2.0",
|
"assert-plus": "^1.0.0",
|
||||||
"bunyan": "1.5.1",
|
"bunyan": "^1.8.3",
|
||||||
"dashdash": "1.10.1",
|
"dashdash": "^1.14.0",
|
||||||
"backoff": "2.4.1",
|
"backoff": "^2.5.0",
|
||||||
"ldap-filter": "0.2.2",
|
"ldap-filter": "0.2.2",
|
||||||
"once": "1.3.2",
|
"once": "^1.4.0",
|
||||||
"vasync": "1.6.3",
|
"vasync": "^1.6.4",
|
||||||
"verror": "1.6.0"
|
"verror": "^1.8.1"
|
||||||
},
|
},
|
||||||
"optionalDependencies": {
|
"optionalDependencies": {
|
||||||
"dtrace-provider": "0.6.0"
|
"dtrace-provider": "^0.7.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"node-uuid": "1.4.3",
|
"node-uuid": "^1.4.7",
|
||||||
"faucet": "0.0.1",
|
"faucet": "0.0.1",
|
||||||
"istanbul": "0.3.15",
|
"istanbul": "^0.4.5",
|
||||||
"tape": "4.0.0"
|
"tape": "^4.6.2"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"report": "./node_modules/.bin/istanbul report html && open ./coverage/lcov-report/index.html",
|
"report": "./node_modules/.bin/istanbul report html && open ./coverage/lcov-report/index.html",
|
||||||
|
|
Loading…
Reference in New Issue