forked from tdmalone/working-plusplus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.53 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
{
"name": "working-plusplus",
"version": "0.0.4",
"description": "Like plusplus.chat, but one that actually works, because you can host it yourself 😉",
"main": "index.js",
"repository": "[email protected]:tdmalone/working-plusplus.git",
"author": "Tim Malone <[email protected]>",
"license": "MIT",
"scripts": {
"lint": "eslint --color --ignore-pattern '/coverage/' --ignore-pattern '!.*.js' \"**/*.js\"",
"fix": "yarn lint --fix",
"test": "jest --forceExit --runInBand --detectOpenHandles",
"unit-tests": "SKIP_INTEGRATION_TESTS=true SKIP_E2E_TESTS=true jest --detectOpenHandles --forceExit",
"integration-tests": "SKIP_E2E_TESTS=true jest --forceExit --detectOpenHandles integration-tests",
"e2e-tests": "SKIP_INTEGRATION_TESTS=true jest --forceExit --detectOpenHandles e2e-tests",
"report-coverage": "cat ./coverage/lcov.info | coveralls"
},
"engines": {
"node": "20.11.1",
"yarn": "1.22.19"
},
"keywords": [
"slack",
"bot",
"karma",
"heroku"
],
"dependencies": {
"@slack/client": "^4.3.1",
"body-parser": "^1.20.2",
"express": "^4.18.3",
"handlebars": "^4.7.8",
"lodash.camelcase": "^4.3.0",
"mime": "^2.3.1",
"pg": "^8.11.3"
},
"devDependencies": {
"coveralls": "^3.1.1",
"eslint": "^8.57.0",
"eslint-config-tdmalone": "^0.1.3",
"eslint-plugin-dollar-sign": "^1.0.2",
"eslint-plugin-jest": "^27.9.0",
"jest": "^29.7.0",
"jest-chain": "^1.1.6",
"jest-extended": "^4.0.2",
"object-assign-deep": "^0.4.0"
}
}