Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/tasks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaimund Schlüßler <raimund.schluessler@mailbox.org>2017-09-02 20:30:37 +0300
committerRaimund Schlüßler <raimund.schluessler@mailbox.org>2017-09-09 19:12:56 +0300
commit493dd230c784ecbbee9655a14963f8c0e6a569de (patch)
tree0f3ecf63d813e5405e308a03a30fa1e7e8bfd927 /js/package.json
parent878357ff7c6731b221e6e8cc809ebe400f48e0a1 (diff)
Use Gulp instead of Grunt, minify js files
Diffstat (limited to 'js/package.json')
-rw-r--r--js/package.json36
1 files changed, 23 insertions, 13 deletions
diff --git a/js/package.json b/js/package.json
index bd1dff58..4f7ad8be 100644
--- a/js/package.json
+++ b/js/package.json
@@ -6,12 +6,13 @@
"name": "Raimund Schlüßler",
"email": "raimund.schluessler@googlemail.com"
},
+ "license": "AGPLv3",
"private": true,
- "homepage": "",
+ "homepage": "https://github.com/nextcloud/tasks",
"scripts": {
- "test": "node node_modules/grunt-cli/bin/grunt karma",
+ "test": "node node_modules/gulp-cli/bin/gulp.js karma",
"prebuild": "yarn install && yarn upgrade && node_modules/bower/bin/bower install && node_modules/bower/bin/bower update",
- "build": "node node_modules/grunt-cli/bin/grunt build"
+ "build": "node node_modules/gulp-cli/bin/gulp.js"
},
"repository": {
"type": "git",
@@ -21,17 +22,26 @@
"contributors": [],
"dependencies": {},
"devDependencies": {
+ "babel-preset-es2015": "^6.14.0",
"bower": "*",
- "grunt": "^1.0.1",
- "grunt-cli": "^1.2.0",
- "grunt-concurrent": "^2.3.1",
- "grunt-contrib-concat": "^1.0.1",
- "grunt-contrib-jshint": "^1.0.0",
- "grunt-contrib-watch": "^1.0.0",
- "grunt-karma": "^2.0.0",
- "grunt-svg-sprite": "1.3.7",
- "grunt-wrap": "^0.3.0",
- "jshint-stylish": "^2.2.1"
+ "gulp": "^3.9.1",
+ "gulp-babel": "^6.1.2",
+ "gulp-cli": "^1.2.2",
+ "gulp-concat": "^2.6.1",
+ "gulp-jshint": "^2.0.4",
+ "gulp-ng-annotate": "^2.0.0",
+ "gulp-npm-files": "^0.1.3",
+ "gulp-sourcemaps": "^2.4.0",
+ "gulp-strip-banner": "0.0.2",
+ "gulp-stylelint": "^4.0.0",
+ "gulp-svg-sprite": "1.3.7",
+ "gulp-uglify": "^2.0.0",
+ "gulp-wrap": "^0.13.0",
+ "jshint": "^2.9.4",
+ "karma": "^1.3.0",
+ "stylelint": "^8.0.0",
+ "stylelint-config-standard": "^17.0.0",
+ "stylelint-scss": "^2.1.0"
},
"engines": {
"node": ">=6"