Skip to content

Commit

Permalink
added grunt-nice-package
Browse files Browse the repository at this point in the history
  • Loading branch information
bahmutov committed Feb 21, 2014
1 parent 5e862a3 commit 80fe4c2
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 24 deletions.
8 changes: 7 additions & 1 deletion Gruntfile.js
Expand Up @@ -12,6 +12,12 @@ module.exports = function (grunt) {
}
},

'nice-package': {
all: {
options: {}
}
},

jshint: grunt.file.readJSON('jshint.json'),

complexity: grunt.file.readJSON('complexity.json'),
Expand All @@ -32,6 +38,6 @@ module.exports = function (grunt) {
var plugins = module.require('matchdep').filterDev('grunt-*');
plugins.forEach(grunt.loadNpmTasks);

grunt.registerTask('default', ['deps-ok', 'sync',
grunt.registerTask('default', ['deps-ok', 'nice-package', 'sync',
'jshint', 'node-qunit', 'qunit', 'complexity']);
};
47 changes: 24 additions & 23 deletions package.json
@@ -1,38 +1,31 @@
{
"name": "qunit-promises",
"version": "0.0.15",
"description": "QUnit plugin that adds assertions to check promises quickly",
"main": "qunit-promises.js",
"version": "0.0.15",
"author": "Gleb Bahmutov <gleb.bahmutov@gmail.com>",
"bugs": {
"url": "https://github.com/bahmutov/qunit-promises/issues"
},
"dependencies": {
"allong.es": "~0.14.0",
"lodash": "~2.4.1"
},
"devDependencies": {
"pre-git": "0.0.14",
"grunt-complexity": "~0.1.4",
"matchdep": "~0.3.0",
"coveralls": "~2.8.0",
"grunt": "~0.4.2",
"grunt-bump": "0.0.13",
"grunt-complexity": "~0.1.4",
"grunt-contrib-jshint": "~0.8.0",
"grunt-contrib-qunit": "~0.3.0",
"grunt-deps-ok": "~0.1.7",
"grunt-nice-package": "~0.2.1",
"grunt-node-qunit": "~2.0.2",
"q": "~1.0.0",
"time-grunt": "~0.2.7",
"grunt-npm2bower-sync": "~0.3.0",
"gt": "~0.8.22",
"coveralls": "~2.8.0"
},
"scripts": {
"test": "grunt && npm run gt && npm run coveralls",
"gt": "node ./node_modules/gt qunit-promises.js test/node-tests.js --output",
"coveralls": "cat cover/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"pre-commit": "grunt && npm run gt",
"pre-push": "grunt qunit",
"repository": {
"type": "git",
"url": "https://github.com/bahmutov/qunit-promises.git"
"matchdep": "~0.3.0",
"pre-git": "0.0.14",
"q": "~1.0.0",
"time-grunt": "~0.2.7"
},
"homepage": "https://github.com/bahmutov/qunit-promise",
"keywords": [
Expand All @@ -41,9 +34,17 @@
"plugin",
"promises"
],
"author": "Gleb Bahmutov <gleb.bahmutov@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bahmutov/qunit-promises/issues"
"main": "qunit-promises.js",
"pre-commit": "grunt && npm run gt",
"pre-push": "grunt qunit",
"repository": {
"type": "git",
"url": "https://github.com/bahmutov/qunit-promises.git"
},
"scripts": {
"test": "grunt && npm run gt && npm run coveralls",
"gt": "node ./node_modules/gt qunit-promises.js test/node-tests.js --output",
"coveralls": "cat cover/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
}
}
}

0 comments on commit 80fe4c2

Please sign in to comment.