-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 997 Bytes
/
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
{
"name": "gzoltar-feedback-action",
"version": "0.0.1",
"description": "Create a comment for a commit on GitHub",
"main": "dist/index.js",
"scripts": {
"lint": "eslint src/**/*.ts",
"build": "ncc build src/main.ts",
"dev": "ncc run src/main.ts",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hugofpaiva/gzoltar-feedback-action.git"
},
"bugs": {
"url": "https://github.com/hugofpaiva/gzoltar-feedback-action/issues"
},
"dependencies": {
"@actions/artifact": "^1.1.1",
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/node": "^18.16.14",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"@vercel/ncc": "^0.32.0",
"eslint": "^8.33.0",
"prettier": "^2.8.4",
"typescript": "^4.9.5"
}
}