This repository has been archived by the owner on Jun 26, 2024. It is now read-only.
forked from sushichop/action-repository-permission
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.79 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
{
"name": "action-repository-permission",
"version": "2.0.0",
"description": "GitHub Action that checks repository permission for a user",
"engines": {
"node": ">= 16"
},
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/sushichop/action-repository-permission.git"
},
"keywords": [
"actions",
"repository",
"permission"
],
"main": "build/main.js",
"scripts": {
"clean": "rimraf build dist",
"build": "npm run clean && tsc",
"build:watch": "npm run build -- --watch",
"pack": "npm run clean && ncc build src/main.ts -o dist -m",
"start": "npm run pack && node dist/index.js",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:eslint": "eslint . --ext .ts",
"lint:prettier": "prettier . --check",
"fix": "npm run fix:eslint && npm run fix:prettier",
"fix:eslint": "npm run lint:eslint -- --fix",
"fix:prettier": "npm run lint:prettier -- --write",
"test": "jest --config jest.config.json",
"test:watch": "npm run test -- --watch",
"danger:ci": "danger ci",
"danger:local": "danger local --dangerfile dangerfile.ts"
},
"author": "Koichi Yokota",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"@vercel/ncc": "^0.36.1",
"danger": "^11.2.3",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"jest": "^29.4.1",
"nock": "^13.3.0",
"prettier": "^2.8.3",
"rimraf": "^4.1.2",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1"
}
}