-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.21 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
{
"name": "codewners-last-authors",
"description": "Put last authors to CODEOWNERS github action",
"version": "1.0.0",
"license": "MIT",
"repository": "https://github.com/swimlane/github-action-codeowners-last",
"author": "Dmitriy Krasnikov <dmikov@gmail.com>",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},
"keywords": [
"actions",
"github",
"codeownners"
],
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^4.0.0"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@vercel/ncc": "^0.33.3",
"@types/node": "^17.0.21",
"@typescript-eslint/parser": "^5.12.1",
"eslint": "^8.10.0",
"eslint-plugin-github": "^4.3.5",
"eslint-plugin-jest": "^26.1.1",
"jest": "^24.9.0",
"jest-circus": "^26.6.3",
"js-yaml": "^4.1.0",
"prettier": "2.5.1",
"ts-jest": "^24.3.0",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
}
}