forked from 18F/standup-slack-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.46 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
{
"name": "standup-bot",
"version": "0.9.3",
"description": "a bot to handle periodic standup meetings in Slack",
"repository": {
"type": "git",
"url": "git+https://github.com/18f/standup-bot.git"
},
"main": "app.js",
"scripts": {
"check-shrinkwrap": "node scripts/test-shrinkwrap.js",
"lint": "jshint --config .jshintrc --exclude ./node_modules,./coverage .",
"migrate": "./node_modules/sequelize-cli/bin/sequelize db:migrate --url $DATABASE_URL",
"start": "node app.js",
"test": "npm run check-shrinkwrap && LOG_LEVEL=100 istanbul cover cucumberjs && codecov"
},
"author": "",
"license": "CC0-1.0",
"dependencies": {
"@18f/us-federal-holidays": "^1.1.0",
"@erdc-itl/simple-logger": "^1.1.0",
"async": "^2.1.4",
"better-queue": "^3.8.4",
"botkit": "^0.5.0",
"cfenv": "^1.0.3",
"dotenv": "^2.0.0",
"marked": "^0.3.5",
"moment": "^2.11.2",
"moment-timezone": "^0.5.1",
"mustache": "^2.2.1",
"node-schedule": "^1.0.0",
"pg": "^6.1.2",
"pg-hstore": "^2.3.2",
"request": "^2.69.0",
"require-directory": "^2.1.1",
"sequelize": "^3.24.3",
"sequelize-cli": "^2.3.1",
"underscore": "^1.8.3"
},
"devDependencies": {
"codecov": "^1.0.1",
"cucumber": "^1.3.1",
"istanbul": "^0.4.2",
"jshint": "^2.9.1",
"mocha": "^3.2.0",
"mock-require": "^2.0.0",
"sinon": "^1.17.3",
"sinon-as-promised": "^4.0.0"
},
"engines": {
"node": "^6.7.0"
}
}