-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.74 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": "@praha/action-restrict-head-branch",
"version": "1.0.0",
"private": true,
"description": "Restrict pull requests to only be able to be created on specific branches",
"homepage": "https://github.com/praha-inc/action-restrict-head-branch",
"bugs": {
"url": "https://github.com/praha-inc/action-restrict-head-branch/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/praha-inc/action-restrict-head-branch.git"
},
"license": "MIT",
"type": "module",
"scripts": {
"build": "ncc build src/index.ts --out dist --transpile-only --minify",
"build:watch": "ncc build src/index.ts --out dist --transpile-only --minify --watch",
"test": "jest",
"test:watch": "jest --watch",
"lint:code": "eslint .",
"lint:type": "tsc --pretty --noEmit",
"version": "changeset",
"version:apply": "changeset version",
"version:publish": "changeset tag"
},
"dependencies": {
"@actions/core": "1.11.1",
"@actions/github": "6.0.0",
"minimatch": "10.0.1"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.10",
"@praha/eslint-config-common": "3.0.6",
"@praha/eslint-config-definer": "1.0.5",
"@praha/eslint-config-javascript": "2.0.7",
"@praha/eslint-config-jest": "3.0.8",
"@praha/eslint-config-style": "2.0.9",
"@praha/eslint-config-typescript": "2.0.8",
"@swc/core": "1.9.3",
"@swc/jest": "0.2.37",
"@tsconfig/node20": "20.1.4",
"@tsconfig/strictest": "2.0.5",
"@types/jest": "29.5.14",
"@types/node": "20.16.6",
"@vercel/ncc": "0.38.3",
"eslint": "8.57.1",
"jest": "29.7.0",
"jest-watch-typeahead": "2.2.2",
"typescript": "5.7.2"
},
"packageManager": "[email protected]"
}