forked from seferov/pr-lint-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 956 Bytes
/
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
{
"name": "pull-request-validator-action",
"version": "1.0.0",
"description": "Pull Request Validator GitHub Action",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"test": "jest",
"format": "prettier --write src/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hd-it-development/pull-request-validator-action.git"
},
"keywords": [
"actions",
"pull",
"validate"
],
"author": "James Withers",
"homepage": "https://github.com/hd-it-development/pull-request-validator-action#readme",
"dependencies": {
"@actions/core": "^1.2.4",
"@actions/github": "^2.2.0",
"@hapi/joi": "^17.1.1",
"codeowners-api": "^2.0.0",
"js-yaml": "^3.13.1",
"lodash": "^4.17.15"
},
"devDependencies": {
"@types/jest": "^25.2.2",
"@types/node": "^13.13.4",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"ts-jest": "^25.5.1",
"typescript": "^3.8.3"
}
}