generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
52 lines (52 loc) · 1.51 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
{
"name": "multi-labeler",
"version": "0.0.0",
"private": true,
"description": "Multi labeler for title, body, comments, commit messages, branch or files with automated status checks.",
"repository": {
"type": "git",
"url": "git+https://github.com/fuxingloh/multi-labeler.git"
},
"license": "MIT",
"author": "Fuxing Loh",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write .",
"lint": "eslint --fix .",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"fp-ts": "^2.16.9",
"io-ts": "^2.2.21",
"io-ts-reporters": "^2.0.1",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"minimatch": "^9.0.5"
},
"devDependencies": {
"@eslint/js": "^8.57.0",
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.9",
"@types/lodash": "^4.17.0",
"@types/minimatch": "^5.1.2",
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vercel/ncc": "^0.38.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-simple-import-sort": "^12.0.0",
"eslint-plugin-unused-imports": "^3.1.0",
"jest": "^29.7.0",
"prettier": "3.2.5",
"prettier-plugin-packagejson": "^2.4.12",
"ts-jest": "^29.1.2",
"typescript": "5.3.3"
}
}