-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.16 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
{
"name": "github-helper",
"version": "1.0.0",
"description": "GitHub Helpers - GHAS Code Scanning File",
"main": "lib/src/index.js",
"scripts": {
"build": "npx tsc",
"prepare": "husky install",
"prettier:write": "npx prettier --write '**/*.{ts,json,md,yaml,yml}'",
"prettier:check": "npx prettier --check '**/*.{ts,json,md,yaml,yml}'",
"lint:check": "npx eslint '**/*.{ts,json}'",
"lint:write": "npx eslint --fix '**/*.{ts,json}'",
"test": "npx jest --coverage --verbose",
"getRepos": "node ./lib/getRepos.js",
"getRepos:debug": "npx ts-node ./src/getRepos.ts",
"getOrgs": "node ./lib/getOrgs.js",
"getOrgs:debug": "npx ts-node ./src/getOrgs.ts",
"enableOrg": "node ./lib/enableOrg.js",
"enableOrg:debug": "npx ts-node ./src/enableOrg.ts",
"start": "npm run build && node ./lib/enable.js",
"start:debug": "npx ts-node ./src/enable.ts"
},
"keywords": [
"GitHub",
"Advanced Security"
],
"devDependencies": {
"@octokit/plugin-retry": "^6.0.1",
"@tsconfig/node20": "^20.1.2",
"@types/aws-lambda": "^8.10.133",
"@types/debug": "^4.1.12",
"@types/jest": "^29.5.11",
"@types/json-schema": "^7.0.15",
"@types/mock-fs": "^4.13.4",
"@types/node": "^20.11.15",
"@types/randomstring": "^1.1.11",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.6.3",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.9",
"jest": "^29.7.0",
"mock-fs": "^5.2.0",
"prettier": "^3.2.4",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
},
"author": "Nick Liffen",
"license": "ISC",
"engines": {
"node": ">=20"
},
"dependencies": {
"@octokit/auth-app": "^6.0.3",
"@octokit/core": "^5.1.0",
"@octokit/plugin-paginate-rest": "^9.1.5",
"@octokit/plugin-throttling": "^8.1.3",
"@octokit/request-error": "^5.0.1",
"@octokit/types": "^12.1.1",
"debug": "^4.3.4",
"delay": "^6.0.0",
"dotenv": "^16.4.1",
"node": "^21.6.1",
"randomstring": "^1.3.0"
}
}