-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 2.11 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
56
57
58
59
60
61
62
63
{
"name": "subito",
"version": "8.1.2",
"private": false,
"description": "A slack slash bot for getting Subito soups",
"repository": {
"type": "git",
"url": "git+https://github.com/EPICmynamesBG/subito-bot.git"
},
"author": "Brandon Groff",
"license": "MIT",
"main": "app.js",
"dependencies": {
"async": "^2.6.1",
"body-parser": "^1.18.3",
"common-errors": "^1.0.5",
"cors": "^2.8.4",
"crypto-js": "^3.1.9-1",
"dotenv": "^4.0.0",
"eslint-changes": "^0.1.2",
"express": "^4.16.3",
"lodash": "^4.17.11",
"moment": "^2.22.2",
"mysql": "^2.16.0",
"node-cron": "^1.2.1",
"pdf2json": "^1.1.7",
"request": "^2.88.0",
"slack-node": "^0.1.8",
"swagger-express-mw": "^0.1.0",
"swagger-tools": "^0.10.4",
"winston": "^2.4.4"
},
"devDependencies": {
"coveralls": "^2.13.3",
"eslint": "^4.19.1",
"eslint-ignore": "^1.0.0",
"istanbul": "^0.4.5",
"mocha": "^3.5.3",
"mocha-lcov-reporter": "^1.3.0",
"pretty-error": "^2.1.1",
"should": "^7.1.0",
"sinon": "^3.3.0",
"supertest": "^1.0.0"
},
"scripts": {
"start": "node app.js",
"test": "NODE_ENV=test istanbul test node_modules/mocha/bin/_mocha",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"prestart": "npm run buildSwagger",
"pretest": "NODE_ENV=test npm run buildSwagger",
"precoverage": "npm run buildSwagger",
"buildSwagger": "node scripts/buildSwagger.js",
"eslint": "node ./node_modules/eslint/bin/eslint.js --ext=.js *",
"migrate-up:local": "node db-migrations/migrate.js --dir='up' --db='local'",
"migrate-up:test": "node db-migrations/migrate.js --dir='up' --db='test'",
"migrate-down:local": "node db-migrations/migrate.js --dir='down' --db='local'",
"migrate-down:test": "node db-migrations/migrate.js --dir='down' --db='test'"
},
"bugs": {
"url": "https://github.com/EPICmynamesBG/subito-bot/issues"
},
"homepage": "https://github.com/EPICmynamesBG/subito-bot#readme"
}