forked from NickLiffen/ghas-enablement
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.91 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
{
"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": "npm run build && node ./lib/getRepos.js",
"getOrgs": "npm run build && node ./lib/getOrgs.js",
"start": "npm run build && node ./lib/enable.js"
},
"keywords": [
"GitHub",
"Advanced Security"
],
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/aws-lambda": "^8.10.101",
"@types/debug": "^4.1.7",
"@types/jest": "^28.1.4",
"@types/json-schema": "^7.0.11",
"@types/mock-fs": "^4.13.1",
"@types/node": "^18.0.0",
"@types/randomstring": "^1.1.8",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"jest": "^28.1.2",
"mock-fs": "^5.1.2",
"prettier": "^2.7.1",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.1",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
},
"author": "Nick Liffen",
"license": "ISC",
"engines": {
"node": ">=16"
},
"dependencies": {
"@octokit/auth-app": "^3.6.1",
"@octokit/core": "^3.6.0",
"@octokit/plugin-paginate-rest": "^2.21.0",
"@octokit/plugin-retry": "^3.0.9",
"@octokit/plugin-throttling": "^3.7.0",
"@octokit/request-error": "^2.1.0",
"@octokit/types": "^6.38.1",
"debug": "^4.3.4",
"delay": "^5.0.0",
"dotenv": "^16.0.1",
"randomstring": "^1.2.2"
}
}