-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
91 lines (91 loc) · 2.63 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@kunalnagarco/action-cve",
"version": "0.0.0",
"private": true,
"description": "Send GitHub vulnerability alerts to multiple platforms",
"keywords": [
"actions",
"node",
"setup",
"cve",
"vulnerabilities",
"mitre",
"github advisory database"
],
"bugs": {
"url": "https://github.com/kunalnagarco/action-cve/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kunalnagarco/action-cve.git"
},
"license": "MIT",
"author": "Kunal Nagar <[email protected]>",
"main": "lib/main.js",
"scripts": {
"pre-commit": "lint-staged",
"build": "tsc",
"format": "prettier --write src/**/*.ts",
"format-check": "prettier --check src/**/*.ts",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint --fix src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"all": "yarn build && yarn format && yarn lint && yarn package && yarn test",
"release": "semantic-release"
},
"lint-staged": {
"package.json": [
"sort-package-json"
],
"src/**/*.{ts}": [
"yarn lint",
"yarn format",
"yarn format-check"
]
},
"dependencies": {
"@actions/core": "1.10.1",
"@actions/github": "6.0.0",
"@octokit/rest": "^20.0.2",
"@octokit/types": "^13.5.0",
"@pagerduty/pdjs": "2.2.4",
"@slack/types": "2.12.0",
"@slack/webhook": "7.0.3",
"adaptivecards": "3.0.4",
"nodemailer": "6.9.14"
},
"devDependencies": {
"@kunalnagarco/eslint-config": "2.2.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "13.0.0",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "10.1.6",
"@semantic-release/release-notes-generator": "14.0.1",
"@types/jest": "29.5.12",
"@types/node": "20.16.1",
"@types/nodemailer": "6.4.15",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vercel/ncc": "0.38.1",
"conventional-changelog-conventionalcommits": "7.0.2",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.8.0",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-react": "^7.35.0",
"husky": "9.1.5",
"jest": "29.7.0",
"lint-staged": "15.2.9",
"prettier": "3.3.3",
"semantic-release": "23.1.1",
"sort-package-json": "2.10.0",
"swiper": "^11.1.9",
"ts-jest": "29.2.4",
"typescript": "5.5.4"
},
"packageManager": "[email protected]"
}