-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 873 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 873 Bytes
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
{
"name": "gulp-gitinfo",
"description": "Plug to fetch git information about local repository",
"version": "0.1.0",
"homepage": "https://github.com/optimus-king/gulp-gitinfo",
"repository": {
"type": "git",
"url": "https://github.com/optimus-king/gulp-gitinfo.git"
},
"author": "Kevin King kingpkevin@gmail.com",
"contributors": [
{
"name": "Jorge Barnaby",
"url": "https://github.com/yorch"
}
],
"main": "./index.js",
"dependencies": {
"event-stream": "~3.1.0"
},
"devDependencies": {
"mocha": "*",
"should": "*",
"event-stream": "~3.1.0"
},
"scripts": {
"test": "mocha --reporter spec"
},
"engines": {
"node": ">= 0.9.0"
},
"keywords": [
"git",
"info"
],
"licenses": [
{
"type": "MIT",
"url": "https://github.com/optimus-king/gulp-gitinfo"
}
]
}