Comparing version 0.2.4 to 0.2.5
{ | ||
"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": "nick@nisi.org" | ||
}, | ||
"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.2.5", | ||
"homepage": "https://github.com/nicknisi/grunt-it", | ||
"author": { | ||
"name": "Nick Nisi", | ||
"email": "nick@nisi.org" | ||
}, | ||
"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" | ||
], | ||
"dependencies": { | ||
"glob": "~3.1.21" | ||
} | ||
} | ||
@@ -27,2 +27,3 @@ /*jshint strict:false*/ | ||
var it = require('it'), | ||
glob = require("glob"), | ||
path = require('path'), | ||
@@ -42,3 +43,3 @@ Module = require("module").Module, | ||
var filepaths = grunt.file.expandFiles(this.file.src); | ||
var filepaths = glob.sync(this.file.src); | ||
grunt.file.clearRequireCache(filepaths); | ||
@@ -45,0 +46,0 @@ var paths = filepaths.map(path.resolve), |
No bug tracker
MaintenancePackage does not have a linked bug tracker in package.json.
Found 1 instance in 1 package
No bug tracker
MaintenancePackage does not have a linked bug tracker in package.json.
Found 1 instance in 1 package
137
7526
1
+ Addedglob@~3.1.21
+ Addedglob@3.1.21(transitive)
+ Addedgraceful-fs@1.2.3(transitive)
+ Addedinherits@1.0.2(transitive)
+ Addedlru-cache@2.7.3(transitive)
+ Addedminimatch@0.2.14(transitive)
+ Addedsigmund@1.0.1(transitive)