generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.69 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
56
57
58
59
60
61
62
63
{
"name": "lgtm-action",
"version": "1.3.2",
"private": true,
"description": "Post image if you comment \"LGTM\"",
"author": "Nogic <24802730+nogic1008@users.noreply.github.com>",
"license": "MIT",
"repository": "https://github.com/ddradar/lgtm-action.git",
"keywords": [
"actions",
"github-actions",
"lgtm"
],
"main": "dist/index.js",
"engines": {
"node": ">=12",
"yarn": "^1.22.4"
},
"scripts": {
"prepare": "husky install",
"build": "ncc build src/main.ts -m --license licenses.txt",
"fix": "run-p \"lint:eslint --fix\" \"lint:prettier --write\"",
"lint": "run-p lint:*",
"lint:eslint": "eslint --ext .ts --ignore-path .gitignore .",
"lint:prettier": "prettier --ignore-path .gitignore -l \"**/*.{ts,json,yml}\"",
"test": "jest"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
],
"*.{json,yml}": "prettier --write"
},
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^5.0.0"
},
"devDependencies": {
"@octokit/webhooks-types": "^4.12.0",
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"@vercel/ncc": "^0.31.1",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^25.0.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^7.0.2",
"jest": "^27.2.4",
"lint-staged": "^11.2.0",
"npm-run-all2": "^5.0.2",
"prettier": "^2.4.1",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"resolutions": {
"optionator": "^0.9.1",
"type-fest": "^1.4.0"
}
}