UNPKG

1.25 kBJSONView Raw
1{
2 "name": "yarn-audit-html",
3 "version": "4.0.0",
4 "description": "Generate a HTML report for Yarn Audit",
5 "main": "index.js",
6 "license": "MIT",
7 "scripts": {
8 "lint": "pretty-quick --check --pattern '**/*.ts' --pattern '**/*.js'",
9 "lint:fix": "pretty-quick --verbose --pattern '**/*.ts' --pattern '**/*.js'",
10 "prelint": "yarn install --prefer-offline --frozen-lockfile",
11 "prelint:fix": "yarn install --prefer-offline --frozen-lockfile",
12 "prepare": "yarn husky install"
13 },
14 "dependencies": {
15 "commander": "^9.3.0",
16 "ejs": "~3.1.8",
17 "marked": "^4.0.17"
18 },
19 "devDependencies": {
20 "husky": "^8.0.1",
21 "prettier": "^2.7.1",
22 "pretty-quick": "^3.1.3"
23 },
24 "bin": {
25 "yarn-audit-html": "index.js"
26 },
27 "engines": {
28 "node": ">=12",
29 "yarn": ">=1"
30 },
31 "keywords": [
32 "yarn",
33 "audit",
34 "report"
35 ],
36 "files": [
37 "lib",
38 "templates"
39 ],
40 "repository": {
41 "type": "git",
42 "url": "https://github.com/davityavryan/yarn-audit-html.git"
43 },
44 "bugs": {
45 "url": "https://github.com/davityavryan/yarn-audit-html/issues"
46 }
47}