-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.46 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "auto-merge-action",
"version": "1.0.0",
"description": "GitHub Action that merge a pull request if all conditions are valid",
"homepage": "https://Leadformance/auto-merge-action#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Leadformance/auto-merge-action.git"
},
"author": {
"name": "Leadformance Developers",
"email": "[email protected]"
},
"keywords": [
"github",
"action",
"merge",
"pull-request"
],
"private": true,
"license": "UNLICENSED",
"engines": {
"node": ">=16",
"yarn": ">=1.20"
},
"source": "src/index.ts",
"main": "dist/index.js",
"scripts": {
"prepare": "husky install",
"prebuild": "rimraf dist",
"build": "rollup -c",
"lint": "yarn lint:commit && yarn lint:eslint && yarn lint:prettier",
"lint:fix": "yarn lint:eslint:fix && yarn lint:prettier:fix",
"lint:commit": "commitlint --from=$( git rev-list --tags --max-count=1 )",
"lint:eslint": "eslint --cache --color 'src/**/*.ts'",
"lint:eslint:fix": "yarn lint:eslint --fix",
"lint:prettier": "yarn prettier -l '**/*.{ts,md,json,yml,yaml}'",
"lint:prettier:fix": "yarn prettier --write '**/*.{ts,md,json,yml,yaml}'",
"test": "jest",
"test:cov": "yarn test --coverage"
},
"dependencies": {
"@actions/core": "^1.4.0",
"@actions/github": "^5.0.0",
"@octokit/graphql": "^4.6.4"
},
"devDependencies": {
"@bridge/commitlint-config": "^3.0.0",
"@bridge/eslint-config": "^6.1.6",
"@bridge/semantic-release-config": "^4.0.33",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@types/jest": "^26.0.24",
"@types/jest-when": "^2.7.3",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"graphql-query-test-mock": "^0.12.1",
"husky": "^7.0.1",
"jest": "^27.0.6",
"jest-when": "^3.3.1",
"lint-staged": "^11.0.0",
"nock": "^13.1.1",
"prettier": "^2.3.2",
"rollup": "^2.52.8",
"rollup-plugin-typescript2": "^0.30.0",
"semantic-release": "^17.4.4",
"ts-jest": "^27.0.3",
"typescript": "^4.3.5"
},
"lint-staged": {
"*.{ts,md,json,yml,yaml}": [
"yarn prettier --write"
],
"*.{ts}": [
"yarn eslint"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional",
"@bridge/commitlint-config"
]
}
}