-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.91 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
{
"name": "unresolved-review-threads",
"version": "0.0.7",
"description": "GitHub Action to prevent the merge of pull request having unresolved review threads",
"main": "lib/src/index.js",
"scripts": {
"build": "tsc -p tsconfig.prod.json",
"license-check": "d2l-license-checker",
"lint": "eslint --ext .js,.ts --max-warnings=0 --color .",
"lint:fix": "eslint --ext .js,.ts --fix --color .",
"test": "jest",
"test:ci": "yarn test --coverage --ci --runInBand --verbose",
"test:watch": "yarn test --watchAll",
"dist": "ncc build --source-map --license licenses.txt",
"release": "yarn build && yarn dist",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SamuelCabralCruz/unresolved-review-threads.git"
},
"keywords": [
"github-actions",
"github-checks",
"pull-requests"
],
"author": "SamuelCabralCruz",
"license": "MIT",
"bugs": {
"url": "https://github.com/SamuelCabralCruz/unresolved-review-threads/issues"
},
"homepage": "https://github.com/SamuelCabralCruz/unresolved-review-threads#readme",
"dependencies": {
"@actions/core": "1.2.6",
"@actions/github": "4.0.0",
"@octokit/rest": "18.5.2"
},
"devDependencies": {
"@octokit/types": "6.13.0",
"@types/faker": "5.5.1",
"@types/jest": "26.0.22",
"@types/node": "14.14.37",
"@typescript-eslint/eslint-plugin": "4.21.0",
"@typescript-eslint/parser": "4.21.0",
"d2l-license-checker": "3.2.0",
"eslint": "7.24.0",
"eslint-config-prettier": "8.1.0",
"eslint-import-resolver-typescript": "2.4.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-simple-import-sort": "7.0.0",
"eslint-plugin-unused-imports": "1.1.1",
"faker": "5.5.3",
"husky": "6.0.0",
"jest": "26.6.3",
"prettier": "2.2.1",
"ts-jest": "26.5.4",
"typescript": "4.2.4"
}
}