-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
executable file
·47 lines (46 loc) · 1.15 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
{
"name": "gh-gif",
"description": "NodeGH plugin for commenting on pull requests/issues using GIF reactions",
"version": "0.3.3",
"author": {
"name": "Zeno Rocha",
"email": "[email protected]",
"web": "http://zenorocha.com",
"twitter": "zenorocha"
},
"contributors": [{
"name": "Eduardo Lundgren",
"email": "[email protected]",
"web": "http://www.eduardo.io",
"twitter": "eduardolundgren"
}],
"license": "BSD",
"repository": {
"type": "git",
"url": "[email protected]:node-gh/gh-gif.git"
},
"bugs": {
"url": "https://github.com/node-gh/gh-gif/issues"
},
"keywords": [
"gh", "nodegh", "gif", "plugin"
],
"bin": {
"gh-gif": "bin/gif.js"
},
"scripts": {
"lint": "node_modules/.bin/jshint bin/ test/",
"test": "node_modules/.bin/mocha --reporter list"
},
"dependencies": {
"giphy-wrapper": "0.0.1"
},
"devDependencies": {
"jshint": "^2.6.0",
"mocha": "^2.1.0"
},
"engines": {
"node": ">=0.12"
},
"preferGlobal": "true"
}