12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- {
- "name": "gulp-watch",
- "version": "5.0.0",
- "description": "Watch, that actually is an endless stream",
- "main": "index.js",
- "keywords": [
- "gulp",
- "watch",
- "gulpplugin"
- ],
- "scripts": {
- "test": "xo && mocha -r test/util/set-default-options -t 5000 -R spec test/test-*",
- "coverage": "istanbul cover node_modules/.bin/_mocha --report html -- -r test/util/set-default-options -R spec",
- "coveralls": "istanbul cover _mocha --report lcovonly -- -r test/util/set-default-options -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"
- },
- "files": [
- "index.js"
- ],
- "repository": {
- "type": "git",
- "url": "git://github.com/floatdrop/gulp-watch.git"
- },
- "author": "Vsevolod Strukchinsky",
- "license": "MIT",
- "bugs": {
- "url": "https://github.com/floatdrop/gulp-watch/issues"
- },
- "devDependencies": {
- "coveralls": "^2.7.0",
- "istanbul": "^0.3.0",
- "mocha": "^2",
- "mocha-lcov-reporter": "0.0.2",
- "proxyquire": "^1.0.1",
- "rimraf": "^2.2.8",
- "should": "~7",
- "sinon": "^1.9.1",
- "stream-assert": "^2.0.1",
- "strip-ansi": "^3.0.0",
- "xo": "^0.10.1"
- },
- "dependencies": {
- "anymatch": "^1.3.0",
- "chokidar": "^2.0.0",
- "glob-parent": "^3.0.1",
- "gulp-util": "^3.0.7",
- "object-assign": "^4.1.0",
- "path-is-absolute": "^1.0.1",
- "readable-stream": "^2.2.2",
- "slash": "^1.0.0",
- "vinyl": "^2.1.0",
- "vinyl-file": "^2.0.0"
- },
- "engine": "node >= 0.10"
- }
|