UNPKG

2.54 kBJSONView Raw
1{
2 "name": "yarn-audit-html",
3 "version": "7.2.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 },
48 "bin": {
49 "yarn-audit-html": "./lib/cli.js"
50 },
51 "engines": {
52 "node": ">=16",
53 "yarn": ">=1"
54 },
55 "module": "./lib/index.js",
56 "types": "./lib/index.d.ts",
57 "keywords": [
58 "yarn",
59 "audit",
60 "report"
61 ],
62 "files": [
63 "lib",
64 "!lib/cli.d.ts",
65 "!lib/types.js",
66 "templates"
67 ],
68 "repository": {
69 "type": "git",
70 "url": "https://github.com/davityavryan/yarn-audit-html.git"
71 },
72 "bugs": {
73 "url": "https://github.com/davityavryan/yarn-audit-html/issues"
74 },
75 "funding": [
76 {
77 "type": "PayPal",
78 "url": "https://paypal.me/davityavryan?country.x=DE&locale.x=en_US"
79 },
80 {
81 "type": "Buy Me A Coffee",
82 "url": "https://www.buymeacoffee.com/davityavryan"
83 }
84 ]
85}