From d07ba84707c27bae0d7f257957e79dc216265f7c Mon Sep 17 00:00:00 2001 From: Mathew Kurian Date: Tue, 13 Jan 2015 11:55:49 -0600 Subject: [PATCH] Removing old grunt; prepping for tests --- Gruntfile.js | 44 -------------------------------------------- package.json | 12 ------------ 2 files changed, 56 deletions(-) delete mode 100644 Gruntfile.js diff --git a/Gruntfile.js b/Gruntfile.js deleted file mode 100644 index 44125d4..0000000 --- a/Gruntfile.js +++ /dev/null @@ -1,44 +0,0 @@ -'use strict'; - -module.exports = function(grunt) { - - // Project configuration. - grunt.initConfig({ - jshint: { - options: { - jshintrc: '.jshintrc' - }, - gruntfile: { - src: ['scribe.js', 'Gruntfile.js'] - }, - lib: { - src: ['lib/**/*.js', 'examples/**/*.js', 'static/js/**/*.js'] - }, - test: { - src: ['test/**/*.js'] - }, - }, - watch: { - gruntfile: { - files: '<%= jshint.gruntfile.src %>', - tasks: ['jshint:gruntfile'] - }, - lib: { - files: '<%= jshint.lib.src %>', - tasks: ['jshint:lib'] - }, - test: { - files: '<%= jshint.test.src %>', - tasks: ['jshint:test'] - }, - }, - }); - - // These plugins provide necessary tasks. - grunt.loadNpmTasks('grunt-contrib-jshint'); - grunt.loadNpmTasks('grunt-contrib-watch'); - - // Default task. - grunt.registerTask('default', ['jshint']); - -}; diff --git a/package.json b/package.json index 2b75a3d..baa6e8e 100644 --- a/package.json +++ b/package.json @@ -23,18 +23,6 @@ } ], "main": "scribe.js", - "scripts": { - "test": "grunt nodeunit" - }, - "devDependencies": { - "grunt-contrib-jshint": "~0.6.4", - "grunt-contrib-nodeunit": "~0.2.0", - "grunt-contrib-watch": "~0.5.3", - "grunt": "~0.4.5" - }, - "directories": { - "test": "test" - }, "license": "MIT", "dependencies": { "callsite": "^1.0.0",