-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
74 lines (74 loc) · 1.69 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
{
"name": "grunt-tv4",
"description": "Validate values against json-schema v4",
"version": "7.1.0",
"homepage": "https://github.com/timbeadle/grunt-tv4",
"author": {
"name": "Bart van der Schoor",
"url": "https://github.com/Bartvds"
},
"repository": {
"type": "git",
"url": "https://github.com/timbeadle/grunt-tv4"
},
"bugs": {
"url": "https://github.com/timbeadle/grunt-tv4/issues"
},
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/timbeadle/grunt-tv4/blob/main/LICENSE-MIT"
}
],
"keywords": [
"gruntplugin",
"validate",
"validator",
"json",
"schema",
"json-schema",
"tv4"
],
"main": "Gruntfile.js",
"engines": {
"node": ">=18.20.4"
},
"scripts": {
"test": "run-p test:*",
"test-ci": "run-p test:grunt test:lint test:engines",
"test:engines": "ls-engines",
"test:grunt": "grunt test",
"test:lint": "xo Gruntfile.js lib/*.js tasks/*.js",
"test:snyk": "snyk test --dev",
"snyk-protect": "snyk-protect",
"prepare": "npm run snyk-protect"
},
"dependencies": {
"@snyk/protect": "^1.1294.3",
"jsonpointer.js": "~0.4.0",
"ministyle": "~0.1.4",
"miniwrite": "~0.1.4",
"tv4": "^1.3.0",
"tv4-reporter": "^7.1.0"
},
"devDependencies": {
"grunt": "^1.6.1",
"grunt-continue": "0.1.0",
"grunt-contrib-connect": "^5.0.1",
"load-grunt-tasks": "5.1.0",
"ls-engines": "0.9.3",
"npm-run-all2": "7.0.2",
"package.json-schema": "0.2.0",
"prettier": "3.4.2",
"xo": "^0.60.0"
},
"peerDependencies": {
"grunt": ">=1.6.1"
},
"snyk": true,
"volta": {
"node": "18.20.4",
"npm": "10.9.2"
}
}