UNPKG

2.52 kBJSONView Raw
1{
2 "name": "yarn-audit-html",
3 "version": "7.3.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": "prettier . --check",
11 "lint:fix": "prettier . --write",
12 "test": "NODE_ENV=test node --test --loader=ts-node/esm --loader=esmock --no-warnings=ExperimentalWarning src/*.test.ts",
13 "test:ci": "NODE_ENV=test c8 -r text -r json node --test --loader=ts-node/esm --loader=esmock --test-reporter spec --no-warnings=ExperimentalWarning src/*.test.ts",
14 "test:watch": "NODE_ENV=test node --test --watch --loader=ts-node/esm --loader=esmock --no-warnings=ExperimentalWarning src/*.test.ts",
15 "test:coverage": "c8 yarn test",
16 "prebuild": "yarn install --prefer-offline --frozen-lockfile && yarn clean",
17 "prelint": "yarn install --prefer-offline --frozen-lockfile",
18 "prelint:fix": "yarn install --prefer-offline --frozen-lockfile",
19 "pretest": "yarn install --prefer-offline --frozen-lockfile",
20 "pretest:watch": "yarn install --prefer-offline --frozen-lockfile",
21 "pretest:coverage": "yarn install --prefer-offline --frozen-lockfile",
22 "prepare": "yarn husky install"
23 },
24 "dependencies": {
25 "commander": "^11.0.0",
26 "ejs": "~3.1.9",
27 "marked": "^5.1.0"
28 },
29 "devDependencies": {
30 "@types/chai": "^4.3.5",
31 "@types/ejs": "^3.1.2",
32 "@types/marked": "^5.0.0",
33 "@types/node": "^18.16.3",
34 "@types/sinon": "^10.0.14",
35 "@types/sinon-chai": "^3.2.9",
36 "c8": "^8.0.1",
37 "chai": "^4.3.7",
38 "esmock": "^2.3.3",
39 "husky": "^8.0.3",
40 "lint-staged": "^13.2.3",
41 "node-test-github-reporter": "^1.1.3",
42 "prettier": "^3.0.0",
43 "pretty-quick": "^3.1.3",
44 "sinon": "^15.2.0",
45 "sinon-chai": "^3.7.0",
46 "ts-node": "^10.9.1",
47 "typescript": "^5.0.4"
48 },
49 "optionalDependencies": {
50 "@types/ejs": "^3.1.2"
51 },
52 "bin": {
53 "yarn-audit-html": "./lib/cli.js"
54 },
55 "engines": {
56 "node": ">=16",
57 "yarn": ">=1"
58 },
59 "module": "./lib/index.js",
60 "types": "./lib/index.d.ts",
61 "keywords": [
62 "yarn",
63 "audit",
64 "report"
65 ],
66 "files": [
67 "lib",
68 "!lib/cli.d.ts",
69 "!lib/types.js",
70 "templates"
71 ],
72 "repository": {
73 "type": "git",
74 "url": "https://github.com/davityavryan/yarn-audit-html.git"
75 },
76 "bugs": {
77 "url": "https://github.com/davityavryan/yarn-audit-html/issues"
78 },
79 "funding": [
80 {
81 "type": "PayPal",
82 "url": "https://paypal.me/davityavryan?country.x=DE&locale.x=en_US"
83 },
84 {
85 "type": "Buy Me A Coffee",
86 "url": "https://www.buymeacoffee.com/davityavryan"
87 }
88 ]
89}