-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 964 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 964 Bytes
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
{
"name": "hubot-lunch",
"description": "Lunch ordering bot",
"version": "0.0.1",
"author": "Maurice Kelly <proj-hubot-lunch@chatswood.org.uk>",
"license": "MIT",
"keywords": [
"hubot",
"hubot-scripts",
"lunch",
"order"
],
"repository": {
"type": "git",
"url": "git@github.com:mauricerkelly/hubot-lunch.git"
},
"bugs": {
"url": "https://github.com/mauricerkelly/hubot-lunch/issues"
},
"dependencies": {
"coffee-script": "^1.7.1",
"winston": ">=0.7.3"
},
"main": "index.coffee",
"homepage": "https://github.com/mauricerkelly/hubot-lunch",
"devDependencies": {
"hubot": ">=2.7.2",
"chai": "~1.9.1",
"sinon": "~1.9.0",
"sinon-chai": "~2.5.0",
"mocha": "~1.18.2",
"hubot-mock-adapter": "~1.0.0"
},
"scripts": {
"test": "NODE_ENV=test ./node_modules/.bin/mocha --require coffee-script --compilers coffee:coffee-script/register --reporter spec --recursive ./spec"
}
}