-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.72 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
{
"name": "tv4-reporter",
"description": "Report Tiny Validator tv4 results in usable formats",
"version": "7.1.0",
"homepage": "https://github.com/timbeadle/tv4-reporter",
"author": {
"name": "Bart van der Schoor",
"url": "https://github.com/Bartvds"
},
"repository": {
"type": "git",
"url": "https://github.com/timbeadle/tv4-reporter"
},
"bugs": {
"url": "https://github.com/timbeadle/tv4-reporter/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/timbeadle/tv4-reporter/blob/main/LICENSE-MIT"
}
],
"keywords": [
"tv4",
"format",
"reporter",
"json-schema"
],
"main": "lib/reporter.js",
"engines": {
"node": ">= 18.20.4"
},
"scripts": {
"test": "npm run test:snyk && npm run test:lint && npm run test:engines",
"test:ci": "npm run test:lint && npm run test:engines",
"test:engines": "ls-engines",
"test:lint": "xo xo.config.cjs lib/*.js",
"test:snyk": "snyk test --dev",
"snyk-protect": "snyk-protect",
"prepare": "npm run snyk-protect"
},
"dependencies": {
"@snyk/protect": "^1.1295.2",
"jsonpointer": "^5.0.1",
"ministyle": "~0.1.4",
"miniwrite": "~0.1.4"
},
"devDependencies": {
"@types/jsonpointer": "^4.0.2",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"globals": "^15.14.0",
"ls-engines": "^0.9.3",
"prettier": "3.4.2",
"tv4": "1.3.0",
"xo": "^0.60.0"
},
"peerDependencies": {
"ministyle": "~0.1.4",
"miniwrite": "~0.1.4",
"tv4": "^1.3.0"
},
"snyk": true,
"volta": {
"node": "18.20.4",
"npm": "11.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}