-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 988 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
48
{
"name": "generator-git-tag",
"version": "0.0.3",
"description": "Yeoman generator for creating GIT tags",
"license": "MIT",
"main": "app/index.js",
"homepage": "https://github.com/jaylaw81/generator-git-tag",
"repository": {
"type": "git",
"url": "https://github.com/jaylaw81/generator-git-tag.git"
},
"bugs": {
"url": "https://github.com/jaylaw81/generator-git-tag/issues"
},
"author": {
"name": "Jason Law",
"url": "https://github.com/jaylaw81"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha"
},
"files": [
"app"
],
"keywords": [
"yeoman-generator",
"git",
"tag"
],
"dependencies": {
"async": "*",
"chalk": "^1.0.0",
"git-user-email": "^0.2.1",
"lodash": "^3.10.0",
"underscore": "^1.8.3",
"underscore.string": "^3.1.1",
"yeoman-generator": "^0.20.1"
},
"devDependencies": {
"mocha": "*"
},
"peerDependencies": {
"yo": ">=1.0.0"
}
}