-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.22 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
{
"name": "hubot-coffeepoll",
"version": "1.1.3",
"author": "Leonardo Couto <leonardowrc@gmail.com>",
"license": "MIT",
"description": "A hubot plugin to help your team to choose where to drink a coffee !",
"scripts": {
"test": "mocha --compilers coffee:coffee-script",
"test:watch": "mocha --watch --bail --compilers coffee:coffee-script"
},
"repository": {
"type": "git",
"url": "https://github.com/wallacyyy/hubot-coffeepoll"
},
"bugs": {
"url": "https://github.com/wallacyyy/hubot-coffeepoll/issues"
},
"keywords": [
"hubot",
"bot",
"plugin",
"foursquare",
"javascript",
"coffee",
"chat"
],
"standard": {
"globals": [
"describe",
"context",
"it",
"beforeEach",
"afterEach"
]
},
"dependencies": {
"lodash": "^3.10.1",
"node-foursquare-venues": "^1.1.0",
"ramda": "^0.23.0"
},
"peerDependencies": {
"hubot": "2.x"
},
"main": "./index",
"devDependencies": {
"chai": "^2.1.1",
"coffee-script": "1.6.3",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.3.0",
"hubot-test-helper": "0.0.7",
"mocha": "^2.3.3",
"nock": "^2.13.0"
}
}