chore(package): update all dependencies

This commit is contained in:
Julien Fontanet 2016-11-23 09:57:23 +01:00
parent 99c95626df
commit 3e59ba4563
2 changed files with 18 additions and 11 deletions

View File

@ -1,8 +1,8 @@
language: node_js language: node_js
node_js: node_js:
- 'stable' - stable
- '6' - 6
- '4' - 4
# Use containers. # Use containers.
# http://docs.travis-ci.com/user/workers/container-based-infrastructure/ # http://docs.travis-ci.com/user/workers/container-based-infrastructure/

View File

@ -36,15 +36,15 @@
"promise-toolbox": "^0.7.0" "promise-toolbox": "^0.7.0"
}, },
"devDependencies": { "devDependencies": {
"babel-cli": "^6.10.1", "babel-cli": "^6.18.0",
"babel-eslint": "^7.0.0", "babel-eslint": "^7.1.1",
"babel-preset-latest": "^6.16.0", "babel-preset-env": "^0.0.8",
"babel-preset-stage-0": "^6.5.0", "babel-preset-stage-0": "^6.16.0",
"cross-env": "^3.1.3", "cross-env": "^3.1.3",
"dependency-check": "^2.5.1", "dependency-check": "^2.6.0",
"ghooks": "^1.2.4", "ghooks": "^1.3.2",
"rimraf": "^2.5.4", "rimraf": "^2.5.4",
"standard": "^8.1.0" "standard": "^8.5.0"
}, },
"scripts": { "scripts": {
"build": "cross-env NODE_ENV=production babel --source-maps --out-dir=dist/ src/", "build": "cross-env NODE_ENV=production babel --source-maps --out-dir=dist/ src/",
@ -59,7 +59,14 @@
}, },
"babel": { "babel": {
"presets": [ "presets": [
"latest", [
"env",
{
"targets": {
"node": 4
}
}
],
"stage-0" "stage-0"
] ]
}, },