-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
49 lines (49 loc) · 1.27 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
{
"name": "action-create-comment",
"version": "1.0.0",
"private": true,
"description": "Create comment to an issue or a pull request",
"main": "lib/main.js",
"scripts": {
"build": "tsc && ncc build",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions-ecosystem/action-create-comment.git"
},
"keywords": [
"actions",
"github",
"comments"
],
"author": "The Actions Ecosystem Authors",
"license": "Apache 2.0",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0",
"@octokit/rest": "^18.0.9",
"semver": "^7.3.2"
},
"devDependencies": {
"@octokit/webhooks": "^7.15.1",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.7",
"@types/semver": "^7.3.4",
"@typescript-eslint/parser": "^4.7.0",
"@vercel/ncc": "^0.25.1",
"eslint": "^7.13.0",
"eslint-plugin-github": "^4.1.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"js-yaml": "^3.13.1",
"prettier": "^2.1.2",
"ts-jest": "^26.4.4",
"typescript": "^4.0.5"
}
}