This repository has been archived by the owner on Jan 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.98 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
64
{
"name": "timebot",
"version": "1.0.0",
"description": "Slack bot for time reporting metrics on projects and personal usages",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev --exit-child src/app.ts",
"start": "ts-node src/app.ts",
"test": "nyc --all --include '*/**' mocha test/* --recursive --require test/setup.ts",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"lint": "eslint 'src/**' --ext .ts",
"test-n-lint": "npm test && npm run lint",
"lint-fix": "eslint 'src/**' --ext .ts --fix",
"prepare": "husky install",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/liatrio/timebot.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/liatrio/timebot/issues"
},
"homepage": "https://github.com/liatrio/timebot#readme",
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/jest": "^29.5.2",
"@types/lodash": "^4.14.195",
"@types/node": "^20.2.3",
"@types/sinon": "^10.0.15",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"commitlint": "^17.6.3",
"eslint": "^8.41.0",
"husky": "^8.0.3",
"mocha": "^10.2.0",
"mocha-suppress-logs": "^0.3.1",
"nyc": "^15.1.0",
"semantic-release": "^21.0.2",
"sinon": "^15.1.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.4"
},
"dependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^10.0.1",
"@semantic-release/github": "^9.0.3",
"@semantic-release/release-notes-generator": "^11.0.3",
"@slack/bolt": "^3.13.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"table": "^6.8.1",
"winston": "^3.8.2"
}
}