-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
52 lines (52 loc) · 1.32 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
{
"name": "yaml-validator",
"version": "5.1.0",
"description": "Validate Yaml files and enforce a given structure",
"main": "index.js",
"type": "module",
"types": "types",
"bin": "bin/yaml-validator.js",
"scripts": {
"test": "c8 --exclude tests --exclude types tape tests/*_test.js",
"typings": "tsc",
"coverage": "c8 --exclude tests --exclude types report --reporter=text-lcov > coverage.lcov && codecov",
"lint": "eslint *.js bin tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paazmaya/yaml-validator.git"
},
"author": "Juga Paazmaya <[email protected]> (https://paazmaya.fi)",
"license": "MIT",
"bugs": {
"url": "https://github.com/paazmaya/yaml-validator/issues"
},
"homepage": "https://github.com/paazmaya/yaml-validator#readme",
"engines": {
"node": ">=18.12.0"
},
"files": [
"bin",
"types",
"index.js",
"LICENSE",
"npm-shrinkwrap.json",
"package.json"
],
"dependencies": {
"check-type": "0.4.11",
"js-yaml": "4.1.0",
"optionator": "0.9.4"
},
"devDependencies": {
"@types/node": "20.17.3",
"c8": "9.1.0",
"codecov": "3.8.3",
"eslint": "8.57.0",
"eslint-config-paazmaya": "9.0.1",
"eslint-plugin-n": "14.0.0",
"sinon": "17.0.1",
"tape": "5.8.1",
"typescript": "5.5.3"
}
}