-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
52 lines (52 loc) · 1.38 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
{
"name": "slack-standup-bot",
"version": "0.0.2",
"description": "Standup Bot for Slack",
"main": "index.js",
"scripts": {
"start": "npm run bot",
"bot": "node index.js",
"ci": "npm test && cat ./coverage/lcov.info | coveralls",
"unit-test": "istanbul cover --report lcov --dir ./coverage/ _mocha --recursive ./test --grep ./test/**/*.spec.js -- --colors --reporter spec",
"pretest": "jshint index.js ./src ./test && jscs index.js ./src ./test",
"test": "npm run unit-test --silent"
},
"engines": {
"node": "0.12.7"
},
"keywords": [
"Slack",
"Standup"
],
"repository": {
"type": "git",
"url": "git+https://github.com/colestrode/botkit-cah.git"
},
"bugs": {
"url": "https://github.com/colestrode/slack-standup-bot/issues"
},
"homepage": "https://github.com/colestrode/slack-standup-bot#readme",
"author": "Cole Furfaro-Strode",
"license": "ISC",
"dependencies": {
"botkit": "0.2.2",
"botkit-storage-redis": "^1.0.0",
"express": "^4.13.3",
"lodash": "^4.13.0",
"moment": "^2.15.1",
"q": "^1.4.1",
"redis": "^2.5.1"
},
"devDependencies": {
"chai": "^3.4.1",
"coveralls": "^2.11.6",
"istanbul": "^0.4.1",
"jscs": "^3.0.2",
"jshint": "^2.9.1",
"mocha": "^3.0.0",
"proxyquire": "^1.7.3",
"sinon": "^1.17.2",
"sinon-chai": "^2.8.0",
"xunit-file": "1.0.0"
}
}