This repository has been archived by the owner on Oct 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.59 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
{
"name": "check-vulnerabilities",
"version": "0.0.0",
"private": true,
"description": "GitHub Action for checking for open dependabot alerts",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest --passWithNoTests",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/conventional-actions/check-vulnerabilities.git"
},
"homepage": "https://github.com/conventional-actions/check-vulnerabilities",
"bugs": {
"url": "https://github.com/conventional-actions/check-vulnerabilities/issues"
},
"keywords": [
"GitHub",
"action",
"version",
"versions",
"create",
"relase"
],
"author": "Conventional Actions",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.9.0",
"@actions/github": "^5.0.3",
"@octokit/rest": "^18.12.0"
},
"devDependencies": {
"@types/glob": "^8.0.0",
"@types/jest": "^29.2.5",
"@types/mime": "^3.0.1",
"@types/node": "^18.11.18",
"@types/node-fetch": "^2.6.2",
"@vercel/ncc": "^0.36.0",
"eslint": "^8.31.0",
"eslint-plugin-github": "^4.6.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.3.1",
"jest-circus": "^29.3.1",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4",
"typescript-formatter": "^7.2.2"
}
}