-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
48 lines (48 loc) · 1.02 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
{
"name": "beepboop",
"version": "1.1.1",
"description": "beepboop eases hosting a botkit based bot on the beepboop hosting platform.",
"main": "index.js",
"scripts": {
"test": "standard && mocha test"
},
"homepage": "http://beepboophq.com",
"bugs": {
"url": "https://github.com/BeepBoopHQ/beepboop-js/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/BeepBoopHQ/beepboop-js"
},
"keywords": [
"beepboop",
"botkit",
"slack",
"bot"
],
"author": "Chris Skudlarczyk <[email protected]> (https://beepboophq.com)",
"license": "ISC",
"dependencies": {
"back": "^1.0.1",
"deap": "^1.0.0",
"eventemitter2": "^0.4.14",
"https": "^1.0.0",
"loglevel": "^1.4.0",
"ws": "^1.0.1"
},
"devDependencies": {
"mocha": "^2.4.5",
"sinon": "^1.17.3",
"standard": "^6.0.8"
},
"standard": {
"globals": [
"describe",
"it",
"before",
"after",
"beforeEach",
"afterEach"
]
}
}