forked from stephenlacy/gulp-git
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.14 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
{
"name": "gulp-git",
"description": "Git plugin for gulp (gulpjs.com)",
"version": "2.9.0",
"homepage": "http://github.com/stevelacy/gulp-git",
"repository": {
"type": "git",
"url": "http://github.com/stevelacy/gulp-git.git"
},
"author": "Steve Lacy me@slacy.me (slacy.me)",
"main": "./index.js",
"dependencies": {
"any-shell-escape": "^0.1.1",
"fancy-log": "^1.3.2",
"lodash.template": "^4.4.0",
"plugin-error": "^1.0.1",
"require-dir": "^1.0.0",
"strip-bom-stream": "^3.0.0",
"through2": "^2.0.3",
"vinyl": "^2.0.1"
},
"devDependencies": {
"eslint": "^3.17.0",
"mocha": "^3.2.0",
"mock-require": "^2.0.2",
"rimraf": "^2.6.1",
"should": "^11.2.0"
},
"scripts": {
"docs": "rimraf docs/* && jsdoc ./index.js ./lib --recurse --destination ./docs",
"lint": "rimraf test/repo test/tmp && eslint ./index.js ./examples/ ./lib/ ./test/",
"test": "mocha --reporter spec --timeout 6000 test/main.js && npm run lint"
},
"engines": {
"node": ">= 0.9.0"
},
"license": "MIT",
"keywords": [
"gulp",
"git",
"gulpgit",
"gulpplugin",
"gulp-plugin"
]
}