generated from actions/typescript-action
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.58 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
{
"name": "check-actor-permissions-action",
"version": "3.0.0",
"private": true,
"description": "GitHub Action to check if an actor has a specific access to the repository",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint --fix src/**/*.ts && eslint --fix __tests__/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prince-chrismc/check-actor-permissions-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "Christopher McArthur <prince.chrismc@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/prince-chrismc/check-actor-permissions-action/issues"
},
"homepage": "https://github.com/prince-chrismc/check-actor-permissions-action#readme",
"engines": {
"node": ">=20"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^5.1.1"
},
"devDependencies": {
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vercel/ncc": "^0.38.3",
"eslint": "^8.57.1",
"eslint-plugin-github": "^5.1.3",
"eslint-plugin-jest": "^28.9.0",
"jest": "^29.7.0",
"js-yaml": "^4.1.0",
"nock": "^13.5.6",
"prettier": "3.4.1",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
}
}