-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.47 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.47 KB
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": "repo-command",
"version": "1.0.0",
"private": false,
"description": "A GitHub bot for automating repository management tasks through commands and automations",
"author": "Ayush Chugh",
"license": "MIT",
"homepage": "https://github.com/aayushchugh/repo-command",
"keywords": [
"probot",
"github",
"probot-app",
"repocommander",
"repo-command",
"automation",
"bot",
"automation bot",
"repository",
"manager"
],
"scripts": {
"build": "tsc",
"start": "probot run ./build/index.js",
"dev": "nodemon --exec \"tsc && probot run ./build/index.js\" --watch src --ext ts",
"test": "jest"
},
"dependencies": {
"probot": "^13.1.2",
"randomcolor": "^0.6.2",
"typescript": "^5.3.3",
"smee-client": "^2.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.24",
"@types/randomcolor": "^0.5.9",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.6",
"@semantic-release/npm": "^11.0.2",
"@semantic-release/release-notes-generator": "^12.1.0",
"jest": "^29.7.0",
"nock": "^13.5.4",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"semantic-release": "^23.0.2",
"ts-jest": "^29.1.2"
},
"engines": {
"node": ">= 10.13.0"
},
"jest": {
"testEnvironment": "node"
}
}