-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "10bis_slackbot",
"version": "0.1.1",
"description": "_A Slackbot that searches 10Bis site_",
"private": true,
"type": "module",
"dependencies": {
"@types/express": "5.0.0",
"axios": "1.7.7",
"body-parser": "1.20.3",
"errorhandler": "1.5.1",
"express": "4.21.1",
"express-rate-limit": "7.4.1",
"moment-timezone": "0.5.46",
"node-ts-cache": "4.4.0",
"node-ts-cache-storage-memory": "4.4.0",
"redis": "4.7.0",
"typescript": "5.6.3",
"uuid": "11.0.3",
"winston": "3.17.0"
},
"devDependencies": {
"@types/chai": "5.0.1",
"@types/mocha": "10.0.9",
"@typescript-eslint/eslint-plugin": "8.14.0",
"@typescript-eslint/parser": "8.14.0",
"chai": "5.1.2",
"coveralls": "3.1.1",
"eslint": "9.14.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-chai-expect": "3.1.0",
"eslint-plugin-mocha": "10.5.0",
"eslint-plugin-prettier": "5.2.1",
"husky": "9.1.6",
"mocha": "10.8.2",
"mock-express-response": "0.3.0",
"nock": "^14.0.0-beta.5",
"node-mocks-http": "^1.14.1",
"nyc": "17.1.0",
"prettier": "3.3.3",
"sinon": "19.0.2",
"ts-node": "10.9.2"
},
"scripts": {
"precommit": "./node_modules/.bin/eslint `git diff --name-only | grep .ts` --fix",
"eslint": "./node_modules/.bin/eslint --ext .ts src/*.ts test/*.ts --fix",
"start": "./tsc --module nodenext --sourceMap --target esnext -p ./tsconfig.json && node ./bin/www",
"pretest": "./node_modules/.bin/tsc --module nodenext --sourceMap --target esnext -p ./tsconfigTest.json",
"covertest": "./node_modules/.bin/nyc mocha --recursive",
"test": "mocha --recursive",
"mocha": "mocha --recursive",
"cover": "./node_modules/.bin/nyc npm t",
"coverage": "./node_modules/.bin/nyc report --reporter=text-lcov | coveralls",
"coveralls": "./node_modules/.bin/nyc report --reporter=lcovonly && cat ./coverage/lcov.info | coveralls",
"watch": "./node_modules/.bin/mocha-typescript-watch",
"prepare": "./node_modules/.bin/tsc --module nodenext --sourceMap --target esnext -p ./tsconfig.json",
"postinstall": "husky install"
},
"engines": {
"npm": "10.9.x",
"node": "22.x"
},
"nyc": {
"include": [
"src/*",
"src/**/*"
],
"exclude": [
"node_modules",
"typings",
"src/server.js"
],
"require": [
"ts-node/register"
],
"reporter": [
"lcov",
"html",
"text-summary",
"text"
],
"all": true
},
"eslintConfig": {
"rules": {
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": "error"
}
},
"standardx": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint/eslint-plugin"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/guykh/10bis.Slackbot.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/guykh/10bis.Slackbot/issues"
},
"homepage": "https://github.com/guykh/10bis.Slackbot#readme"
}