-
-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
55 lines (55 loc) · 1.54 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
{
"name": "slash-command-dispatch",
"version": "4.0.0",
"private": true,
"description": "Facilitates 'ChatOps' by creating dispatch events for slash commands",
"main": "lib/main.js",
"scripts": {
"build": "tsc && ncc build",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"test": "jest unit",
"test:int": "jest int"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peter-evans/slash-command-dispatch.git"
},
"keywords": [
"slash",
"command",
"dispatch"
],
"author": "Peter Evans",
"license": "MIT",
"bugs": {
"url": "https://github.com/peter-evans/slash-command-dispatch/issues"
},
"homepage": "https://github.com/peter-evans/slash-command-dispatch#readme",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^5.1.1",
"@octokit/core": "^4.2.4",
"@octokit/plugin-paginate-rest": "^5.0.1",
"@octokit/plugin-rest-endpoint-methods": "^6.8.1",
"http-proxy-agent": "^5.0.0",
"https-proxy-agent": "^5.0.1"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/node": "^16.18.119",
"@typescript-eslint/parser": "^5.62.0",
"@vercel/ncc": "^0.38.2",
"eslint": "^8.57.1",
"eslint-plugin-github": "^4.10.2",
"eslint-plugin-jest": "^25.7.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^27.5.1",
"jest-circus": "^27.5.1",
"js-yaml": "^4.1.0",
"prettier": "^3.3.3",
"ts-jest": "^27.1.5",
"typescript": "^4.9.5"
}
}