forked from stephenlacy/gulp-git
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 968 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
{
"name": "gulp-git",
"description": "Git plugin for gulp (gulpjs.com)",
"version": "1.0.0",
"homepage": "http://github.com/stevelacy/gulp-git",
"repository": {
"type": "git",
"url": "http://github.com/stevelacy/gulp-git.git"
},
"author": "Steve Lacy [email protected] (slacy.me)",
"main": "./index.js",
"dependencies": {
"any-shell-escape": "^0.1.1",
"gulp-util": "^3.0.1",
"require-dir": "^0.1.0",
"through2": "^0.6.3"
},
"devDependencies": {
"mocha": "*",
"should": "*",
"jshint": "^2.5.6",
"rimraf": "*"
},
"scripts": {
"test": "mocha --reporter spec --timeout 6000 test/main.js && jshint ./index.js ./examples/. ./lib/. ./test/."
},
"engines": {
"node": ">= 0.9.0"
},
"keywords": [
"gulp",
"git",
"gulpgit",
"gulpplugin",
"gulp-plugin"
],
"licenses": [
{
"type": "MIT",
"url": "http://github.com/stevelacy/gulp-git/raw/master/LICENSE"
}
]
}