1 | {
|
2 | "name": "gulp-git",
|
3 | "description": "Git plugin for gulp (gulpjs.com)",
|
4 | "version": "2.11.0",
|
5 | "homepage": "http://github.com/stevelacy/gulp-git",
|
6 | "repository": {
|
7 | "type": "git",
|
8 | "url": "http://github.com/stevelacy/gulp-git.git"
|
9 | },
|
10 | "author": "Steve Lacy me@slacy.me (slacy.me)",
|
11 | "main": "./index.js",
|
12 | "dependencies": {
|
13 | "any-shell-escape": "^0.1.1",
|
14 | "fancy-log": "^1.3.2",
|
15 | "lodash": "^4.17.21",
|
16 | "plugin-error": "^1.0.1",
|
17 | "require-dir": "^1.0.0",
|
18 | "strip-bom-stream": "^3.0.0",
|
19 | "vinyl": "^2.0.1"
|
20 | },
|
21 | "devDependencies": {
|
22 | "eslint": "^6.7.2",
|
23 | "mocha": "^6.2.2",
|
24 | "mock-require": "^2.0.2",
|
25 | "rimraf": "^2.6.1",
|
26 | "should": "^13.2.3"
|
27 | },
|
28 | "scripts": {
|
29 | "docs": "rimraf docs/* && jsdoc ./index.js ./lib --recurse --destination ./docs",
|
30 | "lint": "rimraf test/repo test/tmp && eslint ./index.js ./examples/ ./lib/ ./test/",
|
31 | "test": "mocha --reporter spec --timeout 6000 test/main.js && npm run lint"
|
32 | },
|
33 | "engines": {
|
34 | "node": ">= 0.9.0"
|
35 | },
|
36 | "license": "MIT",
|
37 | "keywords": [
|
38 | "gulp",
|
39 | "git",
|
40 | "gulpgit",
|
41 | "gulpplugin",
|
42 | "gulp-plugin"
|
43 | ]
|
44 | }
|