UNPKG

2.5 kBJSONView Raw
1{
2 "name": "yarn-audit-html",
3 "version": "7.3.1",
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.2"
28 },
29 "devDependencies": {
30 "@types/chai": "^4.3.5",
31 "@types/ejs": "^3.1.2",
32 "@types/marked": "^5.0.1",
33 "@types/node": "^18.16.3",
34 "@types/sinon": "^10.0.15",
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 "sinon": "^15.2.0",
44 "sinon-chai": "^3.7.0",
45 "ts-node": "^10.9.1",
46 "typescript": "^5.1.6"
47 },
48 "optionalDependencies": {
49 "@types/ejs": "^3.1.2"
50 },
51 "bin": {
52 "yarn-audit-html": "./lib/cli.js"
53 },
54 "engines": {
55 "node": ">=16",
56 "yarn": ">=1"
57 },
58 "module": "./lib/index.js",
59 "types": "./lib/index.d.ts",
60 "keywords": [
61 "yarn",
62 "audit",
63 "report"
64 ],
65 "files": [
66 "lib",
67 "!lib/cli.d.ts",
68 "!lib/types.js",
69 "templates"
70 ],
71 "repository": {
72 "type": "git",
73 "url": "https://github.com/davityavryan/yarn-audit-html.git"
74 },
75 "bugs": {
76 "url": "https://github.com/davityavryan/yarn-audit-html/issues"
77 },
78 "funding": [
79 {
80 "type": "PayPal",
81 "url": "https://paypal.me/davityavryan?country.x=DE&locale.x=en_US"
82 },
83 {
84 "type": "Buy Me A Coffee",
85 "url": "https://www.buymeacoffee.com/davityavryan"
86 }
87 ]
88}