Comparing version 1.0.0 to 1.1.0
## History | ||
- v1.1 April 19, 2012 | ||
- CoffeeScript dependency is now included within watchr | ||
- v1.0 February 11, 2012 | ||
@@ -4,0 +7,0 @@ - Better support for ignoring hidden files |
{ | ||
"name": "watchr", | ||
"version": "1.0.0", | ||
"description": "Node.js watching library, as all the other ones suck.", | ||
"homepage": "https://github.com/balupton/watchr", | ||
"version": "1.1.0", | ||
"description": "Provides a better and normalised API between Node's 0.4 watchFile and 0.6's fsWatcher", | ||
"homepage": "https://github.com/bevry/watchr", | ||
"keywords": [ | ||
"watching", | ||
"watch", | ||
"files", | ||
"directories", | ||
"smart" | ||
"fswatcher", | ||
"watchfile" | ||
], | ||
"author": { | ||
"name": "Benjamin Lupton", | ||
"email": "b@lupton.cc", | ||
"url": "http://balupton.com" | ||
}, | ||
"author": "Bevry Pty Ltd <us@bevry.me> (http://bevry.me)", | ||
"maintainers": [ | ||
{ | ||
"name": "Benjamin Lupton", | ||
"email": "b@lupton.cc", | ||
"url": "http://balupton.com" | ||
} | ||
"Benjamin Lupton <b@lupton.cc> (http://balupton.com)" | ||
], | ||
"contributors": [ | ||
{ | ||
"name": "Benjamin Lupton", | ||
"email": "b@lupton.cc", | ||
"url": "http://balupton.com" | ||
} | ||
"Benjamin Lupton <b@lupton.cc> (http://balupton.com)" | ||
], | ||
"bugs": { | ||
"url": "https://github.com/balupton/watchr/issues" | ||
"url": "https://github.com/bevry/watchr/issues" | ||
}, | ||
"licenses": [ | ||
{ | ||
"type": "MIT", | ||
"url": "http://creativecommons.org/licenses/MIT/" | ||
} | ||
], | ||
"repository" : { | ||
"type": "git", | ||
"url": "http://github.com/balupton/watchr.git" | ||
"url": "http://github.com/bevry/watchr.git" | ||
}, | ||
"engines" : { | ||
"node": ">=0.4.0" | ||
}, | ||
"dependencies": { | ||
"coffee-script": "1.3.x" | ||
}, | ||
"devDependencies": { | ||
"bal-util": "1.5.x", | ||
"docco": "0.3.x", | ||
"bal-util": "1.1.x", | ||
"mocha": "0.11.x" | ||
"mocha": "1.0.x" | ||
}, | ||
"engines" : { | ||
"node": ">=0.4.0" | ||
}, | ||
"bin": { | ||
@@ -59,3 +43,6 @@ "watchr": "./bin/watchr" | ||
}, | ||
"main": "./lib/watchr.coffee" | ||
"scripts": { | ||
"test": "node ./node_modules/mocha/bin/mocha" | ||
}, | ||
"main": "./main.js" | ||
} |
@@ -12,3 +12,2 @@ ## Watchr. Node.js file watching that doesn't suck. | ||
// Requires | ||
require('coffee-script'); # watchr dependency | ||
var watchr = require('watchr'); | ||
@@ -24,3 +23,3 @@ | ||
``` javascript | ||
``` coffeescript | ||
# Requires | ||
@@ -38,3 +37,3 @@ watchr = require('watchr') | ||
``` bash | ||
npm install coffee-script watchr | ||
npm install watchr | ||
``` | ||
@@ -41,0 +40,0 @@ |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Dynamic require
Supply chain riskDynamic require can indicate the package is performing dangerous or unsafe dynamic code execution.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
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
No website
QualityPackage does not have a website.
Found 1 instance in 1 package
65024
14
184
0
0
1
53
1
+ Addedcoffee-script@1.3.x
+ Addedcoffee-script@1.3.3(transitive)