-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
106 lines (106 loc) · 2.63 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "salty-dog",
"version": "0.9.2",
"description": "Rule-based JSON/YAML validator using JSON schemas",
"homepage": "https://github.com/ssube/salty-dog",
"repository": {
"type": "git",
"url": "https://github.com/ssube/salty-dog.git"
},
"keywords": [
"cli",
"json",
"json-lint",
"json-path",
"json-schema",
"json-validation",
"jsonpath",
"jsonschema",
"lint",
"tool",
"validation",
"yaml",
"yaml-lint",
"yaml-validation"
],
"type": "module",
"main": "out/index.js",
"bin": {
"salty-dog": "out/bundle/index.cjs"
},
"directories": {
"doc": "docs",
"test": "test"
},
"exports": {
"./app": "./out/src/app.js",
"./bundle": "./out/bundle/index.cjs"
},
"scripts": {
"build": "make",
"test": "make test"
},
"author": "ssube",
"license": "MIT",
"devDependencies": {
"@apextoaster/js-utils": "0.5.0",
"@apextoaster/js-yaml-schema": "0.5.0",
"@istanbuljs/nyc-config-typescript": "1.0.2",
"@istanbuljs/schema": "0.1.3",
"@microsoft/api-documenter": "7.22.8",
"@microsoft/api-extractor": "7.35.1",
"@types/bunyan": "1.8.8",
"@types/chai": "4.3.5",
"@types/chai-as-promised": "7.1.5",
"@types/deep-diff": "1.0.2",
"@types/js-yaml": "4.0.5",
"@types/lodash": "4.14.195",
"@types/minimatch": "5.1.2",
"@types/mocha": "10.0.1",
"@types/node": "18.15.3",
"@types/sinon": "10.0.15",
"@types/sinon-chai": "3.2.9",
"@types/source-map-support": "0.5.6",
"@types/yargs": "17.0.24",
"@typescript-eslint/eslint-plugin": "5.59.8",
"@typescript-eslint/parser": "5.59.8",
"ajv": "8.12.0",
"bunyan": "1.8.15",
"c8": "7.14.0",
"chai": "4.3.7",
"chai-as-promised": "7.1.1",
"deep-diff": "1.0.2",
"esbuild": "0.18.5",
"eslint": "8.41.0",
"eslint-plugin-chai": "0.0.1",
"eslint-plugin-chai-expect": "3.0.0",
"eslint-plugin-chai-expect-keywords": "2.1.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-mocha": "10.1.0",
"eslint-plugin-no-null": "1.0.2",
"eslint-plugin-sonarjs": "0.19.0",
"js-yaml": "4.1.0",
"jsonpath-plus": "7.2.0",
"lodash": "4.17.21",
"memfs": "3.5.1",
"minimatch": "5.1.6",
"mocha": "10.2.0",
"noicejs": "4.0.0",
"nyc": "15.1.0",
"sinon": "15.1.0",
"sinon-chai": "3.7.0",
"source-map-support": "0.5.21",
"standard-version": "9.5.0",
"typescript": "4.9.5",
"yargs": "17.7.2"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript"
},
"resolutions": {
"lodash": "4.17.21"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}