-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
41 lines (41 loc) · 971 Bytes
/
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
{
"name": "json-schema-resolver",
"version": "2.0.0",
"description": "Resolve all your $refs",
"main": "ref-resolver.js",
"scripts": {
"lint": "standard",
"lint:fix": "standard --fix",
"test": "tap test/**/*.test.js"
},
"engines": {
"node": ">=10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Eomm/json-schema-resolver.git"
},
"author": "Manuel Spigolon <behemoth89@gmail.com> (https://github.com/Eomm)",
"funding": "https://github.com/Eomm/json-schema-resolver?sponsor=1",
"license": "MIT",
"bugs": {
"url": "https://github.com/Eomm/json-schema-resolver/issues"
},
"homepage": "https://github.com/Eomm/json-schema-resolver#readme",
"devDependencies": {
"standard": "^17.0.0",
"tap": "^16.3.0"
},
"dependencies": {
"debug": "^4.1.1",
"rfdc": "^1.1.4",
"uri-js": "^4.2.2"
},
"keywords": [
"json",
"schema",
"json-schema",
"ref",
"$ref"
]
}