-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
88 lines (88 loc) · 2.44 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "yarn-audit-html",
"version": "7.3.2",
"description": "Generate a HTML report for Yarn Audit",
"type": "module",
"license": "MIT",
"scripts": {
"build": "tsc -b",
"clean": "rm -rf ./lib/*",
"lint": "prettier . --check",
"lint:fix": "prettier . --write",
"test": "NODE_ENV=test node --test --loader=ts-node/esm --loader=esmock --no-warnings=ExperimentalWarning src/*.test.ts",
"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",
"test:watch": "NODE_ENV=test node --test --watch --loader=ts-node/esm --loader=esmock --no-warnings=ExperimentalWarning src/*.test.ts",
"test:coverage": "c8 yarn test",
"prebuild": "yarn install --prefer-offline --frozen-lockfile && yarn clean",
"prelint": "yarn install --prefer-offline --frozen-lockfile",
"prelint:fix": "yarn install --prefer-offline --frozen-lockfile",
"pretest": "yarn install --prefer-offline --frozen-lockfile",
"pretest:watch": "yarn install --prefer-offline --frozen-lockfile",
"pretest:coverage": "yarn install --prefer-offline --frozen-lockfile",
"prepare": "yarn husky install"
},
"dependencies": {
"commander": "^11.0.0",
"ejs": "^3.1.9",
"marked": "^5.1.2"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/ejs": "^3.1.2",
"@types/marked": "^5.0.1",
"@types/node": "^18.16.3",
"@types/sinon": "^10.0.15",
"@types/sinon-chai": "^3.2.9",
"c8": "^8.0.1",
"chai": "^4.3.7",
"esmock": "^2.3.3",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"node-test-github-reporter": "^1.1.3",
"prettier": "^3.0.0",
"sinon": "^15.2.0",
"sinon-chai": "^3.7.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"optionalDependencies": {
"@types/ejs": "^3.1.2"
},
"bin": {
"yarn-audit-html": "./lib/cli.js"
},
"engines": {
"node": ">=16",
"yarn": ">=1"
},
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"keywords": [
"yarn",
"audit",
"report"
],
"files": [
"lib",
"!lib/cli.d.ts",
"!lib/types.js",
"templates"
],
"repository": {
"type": "git",
"url": "https://github.com/davityavryan/yarn-audit-html.git"
},
"bugs": {
"url": "https://github.com/davityavryan/yarn-audit-html/issues"
},
"funding": [
{
"type": "PayPal",
"url": "https://paypal.me/davityavryan?country.x=DE&locale.x=en_US"
},
{
"type": "Buy Me A Coffee",
"url": "https://www.buymeacoffee.com/davityavryan"
}
]
}