-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.42 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
{
"name": "bot",
"version": "1.0.0",
"private": true,
"description": "A GitHub App for difizen group",
"homepage": "https://github.com/bubkoo/difizen-bot",
"bugs": "https://github.com/bubkoo/difizen-bot/issues",
"repository": "https://github.com/bubkoo/difizen-bot.git",
"license": "MIT",
"author": {
"name": "bubkooo",
"email": "[email protected]"
},
"scripts": {
"clean": "rimraf lib",
"lint": "eslint 'src/**/*.{js,ts}?(x)' --fix",
"prebuild": "run-s clean",
"build": "tsc --outDir ./lib",
"build:watch": "run-s 'build -- -w'",
"dev": "nodemon --exec \"npm start\"",
"start": "probot run ./lib/index.js"
},
"dependencies": {
"gemoji": "6.1.0",
"js-yaml": "^4.1.0",
"probot": "^13.4.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@bubkoo/commitlint-config": "^2.0.0",
"@bubkoo/eslint-config": "^3.1.1",
"@bubkoo/husky-hooks": "^2.0.1",
"@bubkoo/prettier-config": "^2.0.0",
"@bubkoo/semantic-release-config": "^2.0.0",
"@bubkoo/tsconfig": "^2.0.0",
"@types/js-yaml": "^4.0.3",
"@types/node": "^22.9.0",
"@types/uuid": "^10.0.0",
"eslint": "^9.15.0",
"nock": "^13.3.0",
"nodemon": "^3.1.7",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"pretty-quick": "^4.0.0",
"rimraf": "^6.0.1",
"smee-client": "^2.0.4",
"tslib": "^2.5.0",
"typescript": "^5.6.3"
},
"engines": {
"node": ">= 20"
}
}