diff --git a/.gitignore b/.gitignore index dd0baeb..de4c009 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,3 @@ .DS_Store test/lib/qunit -node_modules/ +/nbproject/private/ \ No newline at end of file diff --git a/Gruntfile.js b/Gruntfile.js deleted file mode 100644 index 6b9dced..0000000 --- a/Gruntfile.js +++ /dev/null @@ -1,35 +0,0 @@ -module.exports = function(grunt) { - "use strict"; - - grunt.initConfig({ - pkg: grunt.file.readJSON('package.json'), - jshint: { - all: ['src/**/*.js'] - }, - qunit: { - all: ['test/*.html'] - }, - compress: { - main: { - options: { - mode: 'zip', - archive: 'validity-<%= pkg.version %>.zip' - }, - files: [ - { - expand: true, - src: ['**/*'], - cwd: 'src/', - dest: '/' - } - ] - } - } - }); - - grunt.loadNpmTasks('grunt-contrib-jshint'); - grunt.loadNpmTasks('grunt-contrib-qunit'); - grunt.loadNpmTasks('grunt-contrib-compress'); - - grunt.registerTask('default', ['jshint', 'qunit', 'compress']); -} diff --git a/package.json b/package.json deleted file mode 100644 index 88521cd..0000000 --- a/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "name": "Validity", - "version": "2.0.0", - "repository": "https://github.com/renyard/validity", - "devDependencies": { - "grunt": "~0.4.1", - "grunt-contrib-qunit": "~0.3.0", - "grunt-contrib-jshint": "~0.7.1", - "grunt-contrib-compress": "~0.5.2" - } -}