-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 862 Bytes
/
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
{
"name": "emcee-questions",
"version": "1.0.0",
"description": "The 'questions' microservice for the Emcee slackbot",
"main": "server/service.js",
"scripts": {
"test": "NODE_ENV=TEST snyk test && eslint bin server && nyc mocha --exit --recursive test",
"start": "node bin/run"
},
"engines": {
"node": "8.9.4"
},
"repository": {
"type": "git",
"url": "https://github.com/mattbontrager/emcee-questions.git"
},
"author": "Matt Bontrager",
"license": "CC-BY-ND-4.0",
"dependencies": {
"body-parser": "^1.18.2",
"bunyan": "^1.8.12",
"dotenv": "^4.0.0",
"express": "^4.14.0",
"knex": "^0.14.4",
"moment": "^2.15.0",
"mysql": "^2.15.0",
"superagent": "^3.7.0"
},
"devDependencies": {
"mocha": "^4.1.0",
"nyc": "^11.4.1",
"should": "^13.2.0",
"supertest": "^3.0.0"
}
}