-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·56 lines (56 loc) · 1.41 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
46
47
48
49
50
51
52
53
54
55
56
{
"name": "gh-boilerplate",
"description": "NodeGH plugin boilerplate.",
"version": "0.1.0",
"homepage": "http://nodegh.io",
"author": {
"name": "Author",
"email": "email@email.com",
"web": "http://www.nodegh.io",
"twitter": "author"
},
"contributors": [
{
"name": "Eduardo Lundgren",
"email": "eduardolundgren@gmail.com",
"web": "http://www.eduardo.io",
"twitter": "eduardolundgren"
},
{
"name": "Zeno Rocha",
"email": "zno.rocha@gmail.com",
"web": "http://zenorocha.com",
"twitter": "zenorocha"
}
],
"license": "BSD",
"repository": {
"type": "git",
"url": "git@github.com:node-gh/gh-boilerplate.git"
},
"bugs": {
"url": "https://github.com/node-gh/gh-boilerplate/issues"
},
"keywords": [
"gh", "nodegh", "boilerplate", "plugin"
],
"bin": {
"gh-bo": "bin/boilerplate.js",
"gh-boilerplate": "bin/boilerplate.js"
},
"scripts": {
"lint": "node_modules/.bin/jshint bin/ test/",
"test": "node_modules/.bin/mocha --reporter list"
},
"devDependencies": {
"jshint": "2.1.2",
"mocha": "1.12.0"
},
"peerDependencies": {
"gh": ">=1.4.0"
},
"engines": {
"node": ">=0.8"
},
"preferGlobal": "true"
}