Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

grunt-it

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-it - npm Package Compare versions

Comparing version 0.2.4 to 0.2.5

84

package.json
{
"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),

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc