-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 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
58
59
60
{
"name": "reginald-bot",
"version": "1.0.0",
"private": false,
"description": "Reginald the Butler",
"keywords": [
"probot",
"reginald"
],
"homepage": "https://github.com/NexusPHP/reginald-bot#readme",
"bugs": {
"url": "https://github.com/NexusPHP/reginald-bot/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NexusPHP/reginald-bot.git"
},
"license": "MIT",
"author": "John Paul E. Balandan, CPA <[email protected]>",
"type": "module",
"directories": {
"test": "tests"
},
"scripts": {
"build": "tsc --project tsconfig.src.json",
"build:watch": "tsc --project tsconfig.src.json --watch",
"dev": "cross-env NODE_ENV=development nodemon --exec 'npm start'",
"lint:inspect": "eslint --inspect-config",
"lint:fix": "eslint --color --fix src/ tests/ \"*.config.ts\"",
"lint": "eslint --color src/ tests/ \"*.config.ts\"",
"start": "probot run ./dist/index.js",
"test": "cross-env LOG_LEVEL=warn NODE_ENV=testing vitest run --coverage"
},
"dependencies": {
"ansi-colors": "^4.1.3",
"lodash": "^4.17.21",
"probot": "^13.4.1"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@octokit/webhooks-examples": "^7.6.1",
"@stylistic/eslint-plugin": "^3.0.0",
"@types/lodash": "^4.17.14",
"@types/node": "^22.10.5",
"@vitest/coverage-v8": "^3.0.4",
"cross-env": "^7.0.3",
"eslint": "^9.18.0",
"jiti": "^2.4.2",
"nock": "^14.0.0",
"nodemon": "^3.1.9",
"smee-client": "^2.0.4",
"typescript": "^5.7.3",
"typescript-eslint": "^8.19.1",
"vitest": "^3.0.4"
},
"engines": {
"node": "^22.0 || ^23.0",
"npm": "^11.0"
}
}