UNPKG

2.61 kBJSONView Raw
1{
2 "name": "yarn-audit-html",
3 "version": "7.1.0",
4 "description": "Generate a HTML report for Yarn Audit",
5 "type": "module",
6 "license": "MIT",
7 "scripts": {
8 "build": "tsc -b",
9 "clean": "rm -rf ./lib/*",
10 "lint": "pretty-quick --check --pattern '**/*.ts' --pattern '**/*.js'",
11 "lint:fix": "pretty-quick --verbose --pattern '**/*.ts' --pattern '**/*.js'",
12 "test": "mocha --inline-diffs",
13 "test:coverage": "c8 mocha --inline-diffs",
14 "prebuild": "yarn install --prefer-offline --frozen-lockfile && yarn clean",
15 "prelint": "yarn install --prefer-offline --frozen-lockfile",
16 "prelint:fix": "yarn install --prefer-offline --frozen-lockfile",
17 "pretest": "yarn install --prefer-offline --frozen-lockfile",
18 "pretest:coverage": "yarn install --prefer-offline --frozen-lockfile",
19 "prepare": "yarn husky install"
20 },
21 "dependencies": {
22 "commander": "^10.0.0",
23 "ejs": "~3.1.9",
24 "marked": "^4.3.0"
25 },
26 "devDependencies": {
27 "@types/chai": "^4.3.5",
28 "@types/ejs": "^3.1.2",
29 "@types/marked": "^4.3.0",
30 "@types/mocha": "^10.0.1",
31 "@types/node": "^18.16.3",
32 "@types/sinon": "^10.0.14",
33 "@types/sinon-chai": "^3.2.9",
34 "c8": "^7.13.0",
35 "chai": "^4.3.7",
36 "husky": "^8.0.3",
37 "mocha": "^10.2.0",
38 "prettier": "^2.8.8",
39 "pretty-quick": "^3.1.3",
40 "sinon": "^15.0.4",
41 "sinon-chai": "^3.7.0",
42 "ts-node": "^10.9.1",
43 "typescript": "^5.0.4"
44 },
45 "optionalDependencies": {
46 "@types/ejs": "^3.1.2",
47 "@types/marked": "^4.3.0",
48 "@types/node": "^18.16.3"
49 },
50 "bin": {
51 "yarn-audit-html": "./lib/cli.js"
52 },
53 "engines": {
54 "node": ">=16",
55 "yarn": ">=1"
56 },
57 "module": "./lib/index.js",
58 "types": "./lib/index.d.ts",
59 "keywords": [
60 "yarn",
61 "audit",
62 "report"
63 ],
64 "files": [
65 "lib",
66 "!lib/cli.d.ts",
67 "!lib/types.js",
68 "templates"
69 ],
70 "repository": {
71 "type": "git",
72 "url": "https://github.com/davityavryan/yarn-audit-html.git"
73 },
74 "bugs": {
75 "url": "https://github.com/davityavryan/yarn-audit-html/issues"
76 },
77 "funding": [
78 {
79 "type": "PayPal",
80 "url": "https://paypal.me/davityavryan?country.x=DE&locale.x=en_US"
81 },
82 {
83 "type": "Buy Me A Coffee",
84 "url": "https://www.buymeacoffee.com/davityavryan"
85 }
86 ]
87}