-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.16 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
{
"name": "lgtm-image-action",
"version": "1.0.0",
"description": "GitHub Action to post LGTM image when reviewer approve pull request",
"main": "lib/index.js",
"scripts": {
"build": "ncc build src/index.ts -o lib",
"format": "prettier --write src/**/*.ts",
"format:check": "prettier --check --loglevel warn src/**/*.ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lazy-actions/lgtm-image-action.git"
},
"keywords": [
"github",
"actions",
"lgtm"
],
"author": "lazy-actions",
"license": "MIT",
"bugs": {
"url": "https://github.com/lazy-actions/lgtm-image-action/issues"
},
"homepage": "https://github.com/lazy-actions/lgtm-image-action#readme",
"dependencies": {
"@actions/core": "^1.2.7",
"@actions/github": "^4.0.0",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "~14",
"@types/node-fetch": "^2.5.10",
"@vercel/ncc": "^0.28.5",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.6",
"typescript": "^4.2.4"
},
"engines": {
"node": ">=14.16.0",
"yarn": ">=1.22.10"
}
}