-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
39 lines (39 loc) · 1.03 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
{
"name": "smash-league",
"version": "3.14.2",
"description": "",
"main": "index.js",
"scripts": {
"start:slack-listener": "node src/server",
"start:smash-league": "node src/",
"debug:slack-listener": "export $(grep -v '^#' .env | xargs) && node --nolazy --inspect-brk=0.0.0.0:9229 src/server",
"debug:smash-league": "export $(grep -v '^#' .env | xargs) && node --nolazy --inspect-brk=0.0.0.0:9229 src/",
"start": "npm run start:slack-listener",
"test": "jest --coverage"
},
"jest": {
"collectCoverageFrom": [
"**/*.js",
"!**/*.test.js",
"!**/*.test.constants.js",
"!**/node_modules/**"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/src/index.js",
"/src/slack-api.js",
"/src/output-generator.js"
]
},
"author": "Edgardo Campos (Xotl)",
"license": "MIT",
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"node-wit": "^5.0.0",
"request": "^2.88.2"
},
"devDependencies": {
"jest": "^25.1.0"
}
}