forked from kunalnagarco/action-cve
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.44 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
{
"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 <knlnagar@gmail.com>",
"main": "lib/main.js",
"scripts": {
"pre-commit": "lint-staged",
"build": "tsc",
"format": "prettier --write src/**/*.ts",
"format-check": "prettier --check src/**/*.ts",
"lint": "eslint --fix src/**/*.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",
"release": "semantic-release"
},
"lint-staged": {
"package.json": [
"sort-package-json"
],
"src/**/*.{ts}": [
"npm run lint",
"npm run format",
"npm run format-check"
]
},
"dependencies": {
"@actions/core": "1.6.0",
"@actions/github": "5.0.3",
"@pagerduty/pdjs": "2.2.4",
"@slack/webhook": "6.1.0",
"adaptivecards": "2.10.0",
"node-fetch": "2.6.7",
"nodemailer": "6.7.7"
},
"devDependencies": {
"@octokit/graphql-schema": "10.74.2",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/commit-analyzer": "9.0.2",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "8.0.5",
"@semantic-release/release-notes-generator": "10.0.3",
"@slack/types": "2.4.0",
"@types/jest": "27.4.1",
"@types/node": "17.0.10",
"@types/node-fetch": "2.6.2",
"@types/nodemailer": "6.4.5",
"@typescript-eslint/eslint-plugin": "5.10.2",
"@typescript-eslint/parser": "5.10.2",
"@vercel/ncc": "0.33.4",
"conventional-changelog-conventionalcommits": "4.6.3",
"eslint": "8.8.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-github": "4.3.7",
"eslint-plugin-jest": "25.7.0",
"eslint-plugin-prettier": "4.0.0",
"husky": "7.0.4",
"jest": "27.5.1",
"jest-circus": "27.5.1",
"js-yaml": "4.1.0",
"lint-staged": "12.2.1",
"prettier": "2.5.1",
"semantic-release": "19.0.3",
"sort-package-json": "1.53.1",
"ts-jest": "27.1.5",
"typescript": "4.5.5"
}
}