-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
105 lines (105 loc) · 2.78 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "audit-export",
"version": "4.2.1",
"description": "Pretty export your npm audit output as an offline accessible html page",
"main": "src/index.js",
"bin": {
"audit-export": "src/index.js"
},
"scripts": {
"format": "npx @biomejs/biome check --write ./src/",
"prepare": "git init && git config --local core.hooksPath .hooks/",
"playwright:install": "npx playwright install",
"test:prepare:nodev10": "cat .playwright/fixtures/npm-audit-v10.json | node ./src/index.js --path ./npm-audit-v10.html --title playwright-test",
"test:prepare:nodev16": "cat .playwright/fixtures/npm-audit-v16.json | node ./src/index.js --path ./npm-audit-v16.html --title playwright-test",
"pretest": "npm run playwright:install && npm run test:prepare:nodev10 && npm run test:prepare:nodev16",
"test": "playwright test",
"release": "commit-and-tag-version",
"pre-release": "commit-and-tag-version --prerelease beta"
},
"author": "Hotay <[email protected]>",
"contributors": [
"Taylor Hoffmann <[email protected]>",
"Camilo Bernal <https://github.com/CamiloBernal>",
"VeekeeFr <https://github.com/VeekeeFr>",
"Uchenna Chilaka <https://github.com/uchilaka>"
],
"keywords": [
"security",
"audit",
"npm-audit",
"packages",
"vulnerabilities"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/hotaydev/audit-export/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/hotaydev/audit-export#readme",
"funding": "https://github.com/sponsors/hotaydev",
"repository": {
"type": "git",
"url": "https://github.com/hotaydev/audit-export.git"
},
"engines": {
"node": ">=10"
},
"dependencies": {
"ejs": "^3.1.10",
"fs-extra": "^11.3.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@playwright/test": "^1.50.0",
"commit-and-tag-version": "^12.5.0",
"playwright": "^1.50.0"
},
"commit-and-tag-version": {
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "chore",
"section": "Enhancements",
"hidden": false
},
{
"type": "enhance",
"section": "Enhancements",
"hidden": false
},
{
"type": "build",
"section": "Enhancements",
"hidden": false
},
{
"type": "docs",
"section": "Documentation",
"hidden": false
},
{
"type": "style",
"section": "Code Style",
"hidden": false
},
{
"type": "refactor",
"section": "Enhancements",
"hidden": false
},
{
"type": "perf",
"section": "Enhancements",
"hidden": false
}
]
}
}