-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.21 KB
/
package.json
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
{
"name": "gulp-process-if-modified",
"version": "1.0.4",
"description": "This gulp plugin will passthrough source files if they have been modified since last build.",
"license": "MIT",
"repository": "wlarch/gulp-process-if-modified",
"homepage": "https://github.com/wlarch/gulp-process-if-modified",
"author": {
"name": "William L'Archevêque",
"email": "[email protected]",
"url": "https://github.com/wlarch"
},
"bugs": {
"url": "https://github.com/wlarch/gulp-process-if-modified/issues"
},
"engines": {
"node": ">=6.0"
},
"scripts": {
"test": "mocha"
},
"files": [
"index.js"
],
"keywords": [
"gulp",
"plugin",
"file",
"files",
"changed",
"newer",
"modified",
"modification",
"updated",
"time",
"mtime",
"stat",
"cache",
"cached",
"passthrough"
],
"dependencies": {
"diff": ">=3.5.0",
"growl": ">=1.10.0",
"lodash": ">=4.17.12",
"lodash.template": ">=4.5.0",
"minimatch": ">=3.0.2",
"node-file-cache": "^1.0.2",
"through2": "^2.0.0"
},
"devDependencies": {
"concat-stream": "^1.4.6",
"event-stream": "^3.3.2",
"gulp": "^3.0.0",
"mocha": "^3.5.3"
}
}