-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
47 lines (47 loc) · 999 Bytes
/
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
{
"name": "gulp-newer",
"version": "1.4.0",
"description": "Only pass through newer source files",
"homepage": "https://github.com/tschaub/gulp-newer",
"author": {
"name": "Tim Schaub",
"url": "http://tschaub.net/"
},
"keywords": [
"gulp",
"gulpplugin",
"newer",
"mtime"
],
"repository": {
"type": "git",
"url": "git://github.com/tschaub/gulp-newer.git"
},
"bugs": {
"url": "https://github.com/tschaub/gulp-newer/issues"
},
"license": "MIT",
"main": "index.js",
"scripts": {
"lint": "eslint index.js spec.js",
"pretest": "npm run lint",
"test": "mocha spec.js"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.14.0",
"eslint-config-tschaub": "^10.0.0",
"gulp": "^3.9.1",
"mocha": "^4.1.0",
"mock-fs": "^4.4.2",
"vinyl": "^2.1.0"
},
"dependencies": {
"glob": "^7.0.3",
"kew": "^0.7.0",
"plugin-error": "^0.1.2"
},
"eslintConfig": {
"extends": "tschaub"
}
}