-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
executable file
·56 lines (56 loc) · 1.45 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-travis",
"description": "NodeGH plugin for integrating Travis, a continous integration server.",
"version": "0.3.2",
"author": {
"name": "Henrique Vicente",
"email": "henriquevicente@gmail.com",
"web": "http://henvic.github.io/",
"twitter": "henriquev"
},
"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-travis.git"
},
"bugs": {
"url": "https://github.com/node-gh/gh-travis/issues"
},
"keywords": [
"gh", "nodegh", "travis", "ci", "plugin"
],
"bin": {
"gh-tr": "bin/travis.js",
"gh-travis": "bin/travis.js"
},
"scripts": {
"lint": "node_modules/.bin/jshint bin/ test/",
"test": "node_modules/.bin/mocha --reporter list"
},
"dependencies": {
"open": ">=0.0.5",
"travis-ci": "^2.0.3"
},
"devDependencies": {
"jshint": "~2.6.0",
"mocha": "^2.1.0"
},
"engines": {
"node": ">=0.12"
},
"preferGlobal": "true"
}