This repository has been archived by the owner on Dec 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
+ renaming grunt.js to Gruntfile.js + updating plugin for grunt 0.4.0
- Loading branch information
Showing
4 changed files
with
57 additions
and
79 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,47 @@ | ||
{ | ||
"name": "grunt-it", | ||
"description": "A grunt task for executing tests written with the it test framework", | ||
"version": "0.2.4", | ||
"homepage": "https://github.com/nicknisi/grunt-it", | ||
"author": { | ||
"name": "Nick Nisi", | ||
"email": "[email protected]" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/nicknisi/grunt-it.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/nicknisi/grunt-it/issues" | ||
}, | ||
"licenses": [ | ||
{ | ||
"type": "MIT", | ||
"url": "https://github.com/nicknisi/grunt-it/blob/master/LICENSE-MIT" | ||
} | ||
], | ||
"main": "grunt.js", | ||
"bin": "bin/grunt-it", | ||
"engines": { | ||
"node": "*" | ||
}, | ||
"scripts": { | ||
"test": "grunt test" | ||
}, | ||
"devDependencies": { | ||
"grunt": "~0.3.17", | ||
"it": "~0.2.0" | ||
}, | ||
"keywords": [ | ||
"gruntplugin", | ||
"unit-testing", | ||
"test", | ||
"tests", | ||
"it" | ||
] | ||
"name": "grunt-it", | ||
"description": "A grunt task for executing tests written with the it test framework", | ||
"version": "0.3.0", | ||
"homepage": "https://github.com/nicknisi/grunt-it", | ||
"author": { | ||
"name": "Nick Nisi", | ||
"email": "[email protected]" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/nicknisi/grunt-it.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/nicknisi/grunt-it/issues" | ||
}, | ||
"licenses": [ | ||
{ | ||
"type": "MIT", | ||
"url": "https://github.com/nicknisi/grunt-it/blob/master/LICENSE-MIT" | ||
} | ||
], | ||
"main": "grunt.js", | ||
"bin": "bin/grunt-it", | ||
"engines": { | ||
"node": "*" | ||
}, | ||
"scripts": { | ||
"test": "grunt test" | ||
}, | ||
"devDependencies": { | ||
"grunt": "~0.4.0", | ||
"it": "~0.2.0", | ||
"grunt-contrib-jshint": "~0.2.0", | ||
"grunt-contrib-nodeunit": "~0.1.2" | ||
}, | ||
"peerDependencies": { | ||
"it": "~0.2.0" | ||
}, | ||
"keywords": [ | ||
"gruntplugin", | ||
"unit-testing", | ||
"test", | ||
"tests", | ||
"it" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters