You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by st...@apache.org on 2016/10/22 05:48:45 UTC

cordova-cli git commit: CB-11100 removed grunt and grunt-retire dev-deps, updated istanbul dev-dep

Repository: cordova-cli
Updated Branches:
  refs/heads/master 576c8426c -> 0512eaa5b


CB-11100 removed grunt and grunt-retire dev-deps, updated istanbul dev-dep

 This closes #264


Project: http://git-wip-us.apache.org/repos/asf/cordova-cli/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-cli/commit/0512eaa5
Tree: http://git-wip-us.apache.org/repos/asf/cordova-cli/tree/0512eaa5
Diff: http://git-wip-us.apache.org/repos/asf/cordova-cli/diff/0512eaa5

Branch: refs/heads/master
Commit: 0512eaa5b15c2343cf705dedc3931da109527eb6
Parents: 576c842
Author: Steve Gill <st...@gmail.com>
Authored: Thu Oct 13 19:40:55 2016 -0700
Committer: Steve Gill <st...@gmail.com>
Committed: Fri Oct 21 22:48:24 2016 -0700

----------------------------------------------------------------------
 Gruntfile.js |  42 --------
 package.json | 284 +++++++++++++++++++++++++++---------------------------
 2 files changed, 141 insertions(+), 185 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/0512eaa5/Gruntfile.js
----------------------------------------------------------------------
diff --git a/Gruntfile.js b/Gruntfile.js
deleted file mode 100644
index 2450884..0000000
--- a/Gruntfile.js
+++ /dev/null
@@ -1,42 +0,0 @@
-/**
-    Licensed to the Apache Software Foundation (ASF) under one
-    or more contributor license agreements.  See the NOTICE file
-    distributed with this work for additional information
-    regarding copyright ownership.  The ASF licenses this file
-    to you under the Apache License, Version 2.0 (the
-    "License"); you may not use this file except in compliance
-    with the License.  You may obtain a copy of the License at
-
-    http://www.apache.org/licenses/LICENSE-2.0
-
-    Unless required by applicable law or agreed to in writing,
-    software distributed under the License is distributed on an
-    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-    KIND, either express or implied.  See the License for the
-    specific language governing permissions and limitations
-    under the License.
-*/
-
-module.exports = function(grunt) {
-
-    grunt.initConfig({
-
-        pkg : grunt.file.readJSON('package.json'),
-
-        // Look for security fixes in dependencies
-        retire : {
-            js      : ['cordova.js', 'Gruntfile.js', 'spec/*.js', 'src/*.js'],
-            node    : ['./'],
-            options : {
-                verbose        : true,
-                packageOnly    : true,
-                jsRepository   : 'https://raw.github.com/bekk/retire.js/master/repository/jsrepository.json',
-                nodeRepository : 'https://raw.github.com/bekk/retire.js/master/repository/npmrepository.json'
-            }
-        }
-
-    });
-
-    grunt.loadNpmTasks('grunt-retire');
-
-};
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/0512eaa5/package.json
----------------------------------------------------------------------
diff --git a/package.json b/package.json
index 6685d96..d123dea 100644
--- a/package.json
+++ b/package.json
@@ -1,145 +1,143 @@
 {
-    "name": "cordova",
-    "version": "6.4.0-dev",
-    "preferGlobal": "true",
-    "description": "Cordova command line interface tool",
-    "main": "cordova",
-    "engines": {
-        "node": ">=4.0.0"
-    },
-    "bin": {
-        "cordova": "./bin/cordova"
-    },
-    "scripts": {
-        "test": "node node_modules/jasmine-node/bin/jasmine-node --captureExceptions --color spec",
-        "cover": "node node_modules/istanbul/lib/cli.js cover --root src --print detail node_modules/jasmine-node/bin/jasmine-node -- spec"
-    },
-    "repository": {
-        "type": "git",
-        "url": "https://git-wip-us.apache.org/repos/asf/cordova-cli.git"
-    },
-    "bugs": {
-        "url": "https://issues.apache.org/jira/browse/CB",
-        "email": "dev@cordova.apache.org"
-    },
-    "keywords": [
-        "cordova",
-        "client",
-        "cli"
-    ],
-    "dependencies": {
-        "cordova-lib": "6.3.1",
-        "cordova-common": "1.4.x",
-        "q": "1.0.1",
-        "nopt": "3.0.1",
-        "underscore": "1.7.0",
-        "update-notifier": "^0.5.0",
-        "insight": "~0.8.2"
-    },
-    "devDependencies": {
-        "istanbul": "^0.3.4",
-        "grunt": "0.4.5",
-        "grunt-retire": "0.3.7",
-        "jasmine-node": "1.14.5"
-    },
-    "author": "Anis Kadri",
-    "contributors": [
-        {
-            "name": "Brian LeRoux",
-            "email": "b@brian.io"
-        },
-        {
-            "name": "Fil Maj",
-            "email": "maj.fil@gmail.com"
-        },
-        {
-            "name": "Mike Reinstein",
-            "email": "reinstein.mike@gmail.com"
-        },
-        {
-            "name": "Darry Pogue",
-            "email": "darryl@dpogue.ca"
-        },
-        {
-            "name": "Michael Brooks",
-            "email": "michael@michaelbrooks.ca"
-        },
-        {
-            "name": "Braden Shepherdson",
-            "email": "braden@chromium.org"
-        },
-        {
-            "name": "Gord Tanner",
-            "email": "gtanner@gmail.com"
-        },
-        {
-            "name": "Tim Kim",
-            "email": "timk@adobe.com"
-        },
-        {
-            "name": "Benn Mapes",
-            "email": "Benn.Mapes@gmail.com"
-        },
-        {
-            "name": "Michael Wolf",
-            "email": "Michael.Wolf@Cynergy.com"
-        },
-        {
-            "name": "Andrew Grieve",
-            "email": "agrieve@chromium.org"
-        },
-        {
-            "name": "Bryan Higgins",
-            "email": "bhiggins@blackberry.com"
-        },
-        {
-            "name": "Don Coleman",
-            "email": "dcoleman@chariotsolutions.com"
-        },
-        {
-            "name": "Germano Gabbianelli",
-            "email": "tyron.mx@gmail.com"
-        },
-        {
-            "name": "Ian Clelland",
-            "email": "iclelland@chromium.org"
-        },
-        {
-            "name": "Lucas Holmqust",
-            "email": "lholmqui@redhat.com"
-        },
-        {
-            "name": "Matt LeGrand",
-            "email": "mlegrand@gmail.com"
-        },
-        {
-            "name": "Michal Mocny",
-            "email": "mmocny@gmail.com"
-        },
-        {
-            "name": "Sam Breed",
-            "email": "sam@quickleft.com"
-        },
-        {
-            "name": "Tommy-Carlos Williams",
-            "email": "tommy@devgeeks.org"
-        },
-        {
-            "name": "Rub�n Norte",
-            "email": "rubennorte@gmail.com"
-        },
-        {
-            "name": "Germano Gabbianelli",
-            "email": "tyrion.mx@gmail.com"
-        },
-        {
-            "name": "Steven Gill",
-            "email": "stevengill97@gmail.com"
-        },
-        {
-            "name": "Jesse",
-            "email": "purplecabbage@gmail.com"
-        }
-    ],
-    "license": "Apache-2.0"
+  "name": "cordova",
+  "version": "6.4.0-dev",
+  "preferGlobal": "true",
+  "description": "Cordova command line interface tool",
+  "main": "cordova",
+  "engines": {
+    "node": ">=4.0.0"
+  },
+  "bin": {
+    "cordova": "./bin/cordova"
+  },
+  "scripts": {
+    "test": "node node_modules/jasmine-node/bin/jasmine-node --captureExceptions --color spec",
+    "cover": "node node_modules/istanbul/lib/cli.js cover --root src --print detail node_modules/jasmine-node/bin/jasmine-node -- spec"
+  },
+  "repository": {
+    "type": "git",
+    "url": "https://git-wip-us.apache.org/repos/asf/cordova-cli.git"
+  },
+  "bugs": {
+    "url": "https://issues.apache.org/jira/browse/CB",
+    "email": "dev@cordova.apache.org"
+  },
+  "keywords": [
+    "cordova",
+    "client",
+    "cli"
+  ],
+  "dependencies": {
+    "cordova-common": "1.4.x",
+    "cordova-lib": "6.3.1",
+    "insight": "~0.8.2",
+    "nopt": "3.0.1",
+    "q": "1.0.1",
+    "underscore": "1.7.0",
+    "update-notifier": "^0.5.0"
+  },
+  "devDependencies": {
+    "istanbul": "^0.4.5",
+    "jasmine-node": "1.14.5"
+  },
+  "author": "Anis Kadri",
+  "contributors": [
+    {
+      "name": "Brian LeRoux",
+      "email": "b@brian.io"
+    },
+    {
+      "name": "Fil Maj",
+      "email": "maj.fil@gmail.com"
+    },
+    {
+      "name": "Mike Reinstein",
+      "email": "reinstein.mike@gmail.com"
+    },
+    {
+      "name": "Darry Pogue",
+      "email": "darryl@dpogue.ca"
+    },
+    {
+      "name": "Michael Brooks",
+      "email": "michael@michaelbrooks.ca"
+    },
+    {
+      "name": "Braden Shepherdson",
+      "email": "braden@chromium.org"
+    },
+    {
+      "name": "Gord Tanner",
+      "email": "gtanner@gmail.com"
+    },
+    {
+      "name": "Tim Kim",
+      "email": "timk@adobe.com"
+    },
+    {
+      "name": "Benn Mapes",
+      "email": "Benn.Mapes@gmail.com"
+    },
+    {
+      "name": "Michael Wolf",
+      "email": "Michael.Wolf@Cynergy.com"
+    },
+    {
+      "name": "Andrew Grieve",
+      "email": "agrieve@chromium.org"
+    },
+    {
+      "name": "Bryan Higgins",
+      "email": "bhiggins@blackberry.com"
+    },
+    {
+      "name": "Don Coleman",
+      "email": "dcoleman@chariotsolutions.com"
+    },
+    {
+      "name": "Germano Gabbianelli",
+      "email": "tyron.mx@gmail.com"
+    },
+    {
+      "name": "Ian Clelland",
+      "email": "iclelland@chromium.org"
+    },
+    {
+      "name": "Lucas Holmqust",
+      "email": "lholmqui@redhat.com"
+    },
+    {
+      "name": "Matt LeGrand",
+      "email": "mlegrand@gmail.com"
+    },
+    {
+      "name": "Michal Mocny",
+      "email": "mmocny@gmail.com"
+    },
+    {
+      "name": "Sam Breed",
+      "email": "sam@quickleft.com"
+    },
+    {
+      "name": "Tommy-Carlos Williams",
+      "email": "tommy@devgeeks.org"
+    },
+    {
+      "name": "Rub�n Norte",
+      "email": "rubennorte@gmail.com"
+    },
+    {
+      "name": "Germano Gabbianelli",
+      "email": "tyrion.mx@gmail.com"
+    },
+    {
+      "name": "Steven Gill",
+      "email": "stevengill97@gmail.com"
+    },
+    {
+      "name": "Jesse",
+      "email": "purplecabbage@gmail.com"
+    }
+  ],
+  "license": "Apache-2.0"
 }


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org