This repository was archived by the owner on Apr 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.34 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.34 KB
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
{
"name": "tidelift-issue-toolbox",
"version": "1.1.0",
"private": false,
"description": "Tidelift Issue Toolbox for Github",
"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",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tidelift/issue-toolbox.git"
},
"keywords": [
"tidelift",
"github",
"security",
"vulnerabilities",
"issues",
"actions"
],
"author": "",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"axios": "^1.1.3"
},
"devDependencies": {
"@types/jest": "^27.5.2",
"@types/node": "^18.11.10",
"@typescript-eslint/parser": "^5.49.0",
"@vercel/ncc": "^0.36.0",
"dotenv": "^16.0.3",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-github": "^4.4.1",
"eslint-plugin-jest": "^27.1.7",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^27.2.5",
"js-yaml": "^4.1.0",
"prettier": "2.8.4",
"ts-jest": "^27.1.5",
"typescript": "^4.9.4"
}
}