This repository has been archived by the owner on Oct 13, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
59 lines (59 loc) · 1.7 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
{
"name": "rust-audit-check",
"version": "1.2.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/actions-rs/audit.git"
},
"keywords": [
"actions",
"rust",
"cargo",
"audit",
"security",
"advisory"
],
"author": "actions-rs",
"license": "MIT",
"bugs": {
"url": "https://github.com/actions-rs/audit-check/issues"
},
"dependencies": {
"@actions-rs/core": "0.0.9",
"@actions/core": "^1.2.4",
"@actions/github": "^2.1.1",
"npm-check-updates": "^4.1.2",
"nunjucks": "^3.2.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.31.0",
"ts-node": "^8.10.1",
"@typescript-eslint/parser": "^2.31.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"@types/jest": "^25.2.1",
"@types/node": "^13.13.5",
"@zeit/ncc": "^0.22.1",
"jest": "^26.0.1",
"jest-circus": "^26.0.1",
"ts-jest": "^25.5.0",
"typescript": "^3.8.3",
"prettier": "^2.0.5"
}
}