-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.76 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 <paulbalandan@gmail.com>",
"type": "module",
"directories": {
"test": "tests"
},
"scripts": {
"build": "tsc --watch",
"dev": "cross-env NODE_ENV=development nodemon --exec 'npm start'",
"format": "prettier --write **/*",
"format:check": "prettier --check **/*",
"lint": "eslint --fix --color src/",
"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/tsconfig": "^4.0.0",
"@octokit/webhooks-examples": "^7.6.1",
"@types/lodash": "^4.17.14",
"@types/node": "^22.10.5",
"@vitest/coverage-v8": "^2.1.8",
"cross-env": "^7.0.3",
"eslint": "^9.18.0",
"jiti": "^2.4.2",
"nock": "^13.5.6",
"nodemon": "^3.1.9",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"smee-client": "^2.0.4",
"typescript": "^5.7.3",
"typescript-eslint": "^8.19.1",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=22"
}
}