-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.35 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": "goldenboy-bot",
"version": "1.0.0",
"engines": {
"node": "6.10.3"
},
"description": "Code Hangar's goldenboy",
"main": "goldenboy.js",
"scripts": {
"start": "NODE_ENV=development node goldenboy",
"dev": "NODE_ENV=development nodemon goldenboy",
"test": "eslint . && mocha",
"eslint": "eslint .",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- -R spec",
"view-coverage": "node server-coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codehangar/goldenboy-bot.git"
},
"keywords": [
"slack",
"bot",
"goldenboy"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/codehangar/goldenboy-bot/issues"
},
"homepage": "https://github.com/codehangar/goldenboy-bot#readme",
"dependencies": {
"@slack/client": "^3.9.0",
"dotenv": "^4.0.0",
"express": "^4.15.0",
"express-handlebars": "^3.0.0",
"github": "^9.2.0",
"moment": "^2.17.1",
"node-slackbot": "0.0.6",
"node-trello": "^1.1.2",
"nodemon": "~1.11.0",
"rethinkdb": "^2.3.3",
"simply-trello": "0.0.9",
"toggl-api": "^1.0.1"
},
"devDependencies": {
"chai": "^4.0.2",
"chai-as-promised": "^7.0.0",
"eslint": "^4.1.1",
"istanbul": "^0.4.5",
"mocha": "^3.4.2",
"mockery": "^2.0.0",
"sinon": "^2.3.5"
}
}