-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.67 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "rita-gulp-watch",
"version": "5.1.7",
"description": "Watch, that actually is an endless stream",
"main": "index.js",
"keywords": [
"gulp",
"watch",
"gulpplugin"
],
"scripts": {
"test": "xo --ignore ./test/fixtures/ && 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": "^3.1.1",
"istanbul": "^0.4.5",
"mocha": "^8.3.2",
"mocha-lcov-reporter": "1.3.0",
"proxyquire": "^2.1.3",
"rimraf": "^3.0.2",
"should": "~13.2.3",
"sinon": "^12.0.1",
"stream-assert": "^2.0.3",
"strip-ansi": "^6.0.1",
"xo": "^0.33.1"
},
"dependencies": {
"ansi-colors": "4.1.1",
"anymatch": "^3.1.2",
"chokidar": "^3.5.2",
"eslint": "^7.30.0",
"fancy-log": "^1.3.3",
"glob-parent": "^6.0.2",
"normalize-path": "^3.0.0",
"object-assign": "^4.1.1",
"plugin-error": "1.0.1",
"readable-stream": "^3.6.0",
"vinyl": "^2.2.1",
"vinyl-file": "^3.0.0"
},
"engine": "node >= 10",
"homepage": "https://github.com/floatdrop/gulp-watch#readme",
"directories": {
"doc": "docs",
"test": "test"
}
}