forked from JulienKode/pull-request-name-linter-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.81 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
61
62
63
{
"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": "11.0.0",
"@types/jest": "26.0.15",
"@types/node": "14.14.7",
"@typescript-eslint/parser": "4.8.1",
"@vercel/ncc": "0.25.1",
"eslint": "7.13.0",
"eslint-plugin-github": "4.1.1",
"eslint-plugin-jest": "24.1.3",
"eslint-plugin-prettier": "3.1.4",
"jest": "26.6.3",
"jest-circus": "26.6.3",
"js-yaml": "3.14.0",
"prettier": "2.1.2",
"ts-jest": "26.4.4",
"typescript": "4.0.5"
},
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0",
"@commitlint/config-angular": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@commitlint/config-lerna-scopes": "^11.0.0",
"@commitlint/config-patternplate": "^11.0.0",
"@commitlint/format": "^11.0.0",
"@commitlint/lint": "^11.0.0",
"@commitlint/load": "^11.0.0",
"commitlint-config-jira": "^1.4.1",
"commitlint-plugin-jira-rules": "^1.4.0",
"conventional-changelog-lint-config-canonical": "^1.0.0",
"dargs": "^7.0.0",
"execa": "^4.1.0",
"lerna": "^3.22.1",
"uuid": "^8.3.1"
}
}