This repository has been archived by the owner on Nov 25, 2023. It is now read-only.
forked from actions-rs/audit-check
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.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
{
"name": "rust-audit-check",
"version": "1.0.0",
"private": false,
"description": "Security audit for security vulnerabilities",
"main": "lib/main.js",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"scripts": {
"build": "ncc build src/main.ts --minify",
"watch": "ncc build src/main.ts --watch --minify",
"test": "jest --passWithNoTests",
"format": "prettier --write 'src/**/*.{js,ts,tsx}'",
"refresh": "rm -rf ./dist/* && npm run-script build",
"lint": "tsc --noEmit && eslint 'src/**/*.{js,ts,tsx}'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xmc-rs/audit.git"
},
"keywords": [
"actions",
"rust",
"cargo",
"audit",
"security",
"advisory"
],
"author": "xmc-rs",
"license": "MIT",
"bugs": {
"url": "https://github.com/xmc-rs/audit-check/issues"
},
"dependencies": {
"@actions/core": "1.10.1",
"@actions/github": "2.2.0",
"@xmc-rs/core": "1.0.1",
"nunjucks": "3.2.4"
},
"devDependencies": {
"@types/jest": "29.5.5",
"@types/node": "18.18.4",
"@typescript-eslint/eslint-plugin": "6.7.5",
"@typescript-eslint/parser": "6.7.5",
"@vercel/ncc": "0.38.0",
"eslint": "8.51.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-prettier": "5.0.0",
"jest": "29.7.0",
"jest-circus": "29.7.0",
"prettier": "3.0.3",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"typescript": "5.2.2"
}
}