summaryrefslogtreecommitdiffstats
path: root/server/sonar-web/package.json
diff options
context:
space:
mode:
authorStas Vilchik <vilchiks@gmail.com>2015-12-15 14:53:36 +0100
committerStas Vilchik <vilchiks@gmail.com>2015-12-15 14:53:36 +0100
commit5d2c52a27a15cb4546a301ff989ae34ea2c1e98c (patch)
treebcbee36ef90d714e585a542cf57b1a0db53ff67a /server/sonar-web/package.json
parent075f913eff761b6ab817fcb77a10c875f49f4cb5 (diff)
downloadsonarqube-5d2c52a27a15cb4546a301ff989ae34ea2c1e98c.tar.gz
sonarqube-5d2c52a27a15cb4546a301ff989ae34ea2c1e98c.zip
upgrade to babel 6
Diffstat (limited to 'server/sonar-web/package.json')
-rw-r--r--server/sonar-web/package.json18
1 files changed, 11 insertions, 7 deletions
diff --git a/server/sonar-web/package.json b/server/sonar-web/package.json
index ce870393771..b1db429ef8f 100644
--- a/server/sonar-web/package.json
+++ b/server/sonar-web/package.json
@@ -5,9 +5,13 @@
"repository": "SonarSource/sonarqube",
"license": "LGPL-3.0",
"devDependencies": {
- "babel": "5.8.23",
- "babel-eslint": "^4.1.6",
- "babelify": "6.3.0",
+ "babel-cli": "^6.3.17",
+ "babel-eslint": "4.1.6",
+ "babel-polyfill": "^6.3.14",
+ "babel-preset-es2015": "^6.3.13",
+ "babel-preset-react": "^6.3.13",
+ "babel-register": "^6.3.13",
+ "babelify": "7.2.0",
"backbone": "1.2.3",
"backbone.marionette": "2.4.3",
"blueimp-md5": "1.1.1",
@@ -39,10 +43,10 @@
"gulp-util": "3.0.6",
"handlebars": "2.0.0",
"hbsfy": "2.3.1",
- "isparta": "3.0.4",
+ "isparta": "^4.0.0",
"jquery": "2.1.4",
"jsdom": "6.5.1",
- "mocha": "2.3.3",
+ "mocha": "^2.3.4",
"moment": "2.10.6",
"numeral": "1.5.3",
"react": "0.14.2",
@@ -61,8 +65,8 @@
"scripts": {
"build-fast": "gulp --fast",
"build": "gulp",
- "test": "./node_modules/.bin/mocha --opts tests/mocha.opts tests",
- "coverage": "./node_modules/.bin/babel-node ./node_modules/.bin/isparta cover --dir './target/coverage' ./node_modules/.bin/_mocha -- --opts tests/mocha.opts tests",
+ "test": "mocha --opts tests/mocha.opts tests",
+ "coverage": "babel-node node_modules/.bin/isparta cover --root 'src/main/js' --include-all-sources --excludes '**/libs/**' --dir 'target/coverage' node_modules/.bin/_mocha -- --opts tests/mocha.opts tests",
"lint": "eslint src/main/js"
},
"browserify-shim": {