chore(package): update all dependencies

This commit is contained in:
Julien Fontanet 2016-05-11 12:21:05 +02:00
parent 89b2156f61
commit ab3d307393
2 changed files with 18 additions and 14 deletions

View File

@ -1,8 +0,0 @@
{
"comments": false,
"compact": true,
"presets": [
"stage-0",
"es2015"
]
}

View File

@ -30,32 +30,44 @@
}, },
"devDependencies": { "devDependencies": {
"babel-cli": "^6.3.17", "babel-cli": "^6.3.17",
"babel-eslint": "^5.0.0-beta6", "babel-eslint": "^6.0.4",
"babel-preset-es2015": "^6.3.13", "babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.3.13", "babel-preset-stage-0": "^6.3.13",
"clarify": "^1.0.5", "clarify": "^1.0.5",
"dependency-check": "^2.5.1", "dependency-check": "^2.5.1",
"ghooks": "^1.2.1",
"mocha": "^2.3.4", "mocha": "^2.3.4",
"must": "^0.13.1", "must": "^0.13.1",
"nyc": "^5.0.1", "nyc": "^6.4.4",
"source-map-support": "^0.4.0", "source-map-support": "^0.4.0",
"standard": "^5.4.1", "standard": "^7.0.1",
"trace": "^2.1.0" "trace": "^2.1.0"
}, },
"scripts": { "scripts": {
"build": "babel --source-maps --out-dir=dist/ src/", "build": "NODE_ENV=production babel --source-maps --out-dir=dist/ src/",
"depcheck": "dependency-check ./package.json",
"dev": "babel --watch --source-maps --out-dir=dist/ src/", "dev": "babel --watch --source-maps --out-dir=dist/ src/",
"dev-test": "mocha --opts .mocha.opts --watch --reporter=min \"dist/**/*.spec.js\"", "dev-test": "mocha --opts .mocha.opts --watch --reporter=min \"dist/**/*.spec.js\"",
"lint": "standard", "lint": "standard",
"depcheck": "dependency-check ./package.json",
"posttest": "npm run lint && npm run depcheck", "posttest": "npm run lint && npm run depcheck",
"prepublish": "npm run build", "prepublish": "npm run build",
"test": "nyc mocha --opts .mocha.opts \"dist/**/*.spec.js\"" "test": "nyc mocha --opts .mocha.opts \"dist/**/*.spec.js\""
}, },
"babel": {
"presets": [
"stage-0",
"es2015"
]
},
"standard": { "standard": {
"ignore": [ "ignore": [
"dist/**" "dist"
], ],
"parser": "babel-eslint" "parser": "babel-eslint"
},
"config": {
"ghooks": {
"commit-msg": "npm test"
}
} }
} }