-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
54 lines (54 loc) · 1.45 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
{
"name": "pull-request-commitlint-action",
"version": "0.1.2",
"private": true,
"description": "Run commitlint on pull request name.",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"pack": "ncc build",
"test": "jest",
"build:pack": "npm run build && npm run pack",
"all": "npm run build && npm run test && npm run format && npm run lint && npm run pack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/typescript-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "Julien Karst",
"license": "MIT",
"devDependencies": {
"@commitlint/types": "17.8.1",
"@types/jest": "27.5.2",
"@types/node": "16.11.45",
"@typescript-eslint/parser": "5.62.0",
"@vercel/ncc": "0.38.1",
"eslint": "7.32.0",
"eslint-plugin-github": "3.4.1",
"eslint-plugin-jest": "26.9.0",
"eslint-plugin-prettier": "4.2.1",
"jest": "27.5.1",
"jest-circus": "27.5.1",
"js-yaml": "4.1.0",
"prettier": "2.8.8",
"ts-jest": "27.1.5",
"typescript": "3.9.10"
},
"dependencies": {
"@actions/core": "1.9.1",
"@actions/github": "5.1.1",
"@commitlint/lint": "17.8.1",
"@commitlint/load": "17.8.1"
},
"resolutions": {
"import-fresh": "JulienKode/import-fresh#fix/issue-when-there-no-parent-module"
}
}