UNPKG

1.27 kBJSONView Raw
1{
2 "name": "glob-watcher",
3 "version": "3.0.0",
4 "description": "Watch globs and execute a function upon change, with intelligent defaults for debouncing and queueing.",
5 "author": "Gulp Team <team@gulpjs.com> (http://gulpjs.com/)",
6 "contributors": [],
7 "repository": "gulpjs/glob-watcher",
8 "license": "MIT",
9 "engines": {
10 "node": ">= 0.10"
11 },
12 "main": "index.js",
13 "files": [
14 "index.js"
15 ],
16 "scripts": {
17 "lint": "eslint . && jscs index.js test/",
18 "pretest": "npm run lint",
19 "test": "mocha --async-only",
20 "cover": "istanbul cover _mocha --report lcovonly",
21 "coveralls": "npm run cover && istanbul-coveralls"
22 },
23 "dependencies": {
24 "async-done": "^1.2.0",
25 "chokidar": "^1.4.3",
26 "lodash.assignwith": "^4.0.6",
27 "lodash.debounce": "^4.0.6"
28 },
29 "devDependencies": {
30 "coveralls": "^2.11.2",
31 "del": "^2.2.0",
32 "eslint": "^1.10.3",
33 "eslint-config-gulp": "^2.0.0",
34 "expect": "^1.16.0",
35 "istanbul": "^0.4.0",
36 "istanbul-coveralls": "^1.0.1",
37 "jscs": "^2.3.5",
38 "jscs-preset-gulp": "^1.0.0",
39 "mocha": "^2.0.0",
40 "mocha-lcov-reporter": "^1.2.0",
41 "through2": "^2.0.1"
42 },
43 "keywords": [
44 "watch",
45 "glob",
46 "async",
47 "queue",
48 "debounce",
49 "callback"
50 ]
51}