-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.67 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
{
"name": "botkit-gratibot",
"version": "0.0.0-development",
"description": "",
"main": "bot.js",
"scripts": {
"start": "node app.js",
"test": "nyc --all --include '*/**' mocha test/* --recursive --require test/setup.js",
"test:ci": "npm ci && npm test && npm run report-coverage",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov",
"lint": "eslint '*.js' 'features/**' 'service/**' 'test/**'",
"test-n-lint": "npm test && npm run lint",
"lint-fix": "eslint '*.js' 'features/**' 'service/**' 'test/**' --fix",
"semantic-release": "semantic-release"
},
"dependencies": {
"@slack/bolt": "^4.1.1",
"express": "^4.21.2",
"moment-timezone": "^0.5.46",
"monk": "^7.3.1",
"winston": "^3.17.0"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.14.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"chai": "^5.0.0",
"chai-as-promised": "^8.0.0",
"chance": "^1.1.12",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.12.0",
"husky": "^9.1.7",
"mocha": "^11.0.1",
"mocha-suppress-logs": "^0.5.1",
"nyc": "^17.1.0",
"prettier": "^3.4.2",
"semantic-release": "^24.2.0",
"sinon": "^19.0.2"
},
"overrides": {
"conventional-changelog-conventionalcommits": ">= 8.0.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"repository": {
"type": "git",
"url": "https://github.com/liatrio/gratibot.git"
}
}