-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.12 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
{
"name": "json-schema-ref-resolver",
"version": "2.0.0",
"description": "JSON schema reference resolver",
"main": "index.js",
"type": "commonjs",
"types": "types/index.d.ts",
"scripts": {
"lint": "standard",
"lint:fix": "standard --fix",
"test:unit": "c8 --100 node --test",
"test:typescript": "tsd",
"test": "npm run lint && npm run test:unit && npm run test:typescript"
},
"precommit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/fastify/json-schema-ref-resolver.git"
},
"bugs": {
"url": "https://github.com/fastify/json-schema-ref-resolver/issues"
},
"keywords": [
"json",
"schema",
"reference",
"openapi",
"swagger"
],
"author": "Ivan Tymoshenko <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/fastify/json-schema-ref-resolver#readme",
"dependencies": {
"dequal": "^2.0.3"
},
"devDependencies": {
"@fastify/pre-commit": "^2.1.0",
"c8": "^9.1.0",
"standard": "^17.1.0",
"tsd": "^0.31.0"
},
"standard": {
"ignore": [
"types/*"
]
}
}