-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.39 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
{
"name": "send-review-reminder-action",
"version": "0.0.0",
"private": false,
"description": "Reminds about pending GitHub pull request review on twist.com",
"prettier": "@doist/prettier-config",
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"lint-fix": "eslint src/**/*.ts --fix",
"package": "ncc build src/main.ts --source-map --license licenses.txt",
"all": "npm run build && npm run format && npm run lint && npm run package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/typescript-action.git"
},
"license": "MIT",
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^5.0.3",
"@actions/http-client": "^2.0.1"
},
"devDependencies": {
"@doist/eslint-config": "7.1.2",
"@doist/prettier-config": "3.0.5",
"@doist/tsconfig": "1.0.0",
"@types/node": "17.0.41",
"@typescript-eslint/parser": "5.27.1",
"@vercel/ncc": "0.34.0",
"eslint": "8.17.0",
"eslint-formatter-codeframe": "7.32.1",
"eslint-plugin-github": "4.3.6",
"eslint-plugin-simple-import-sort": "^7.0.0",
"js-yaml": "4.1.0",
"prettier": "2.6.2",
"typescript": "4.7.3"
}
}