-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.08 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.08 KB
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
{
"name": "openapi-schema-diff",
"version": "0.0.1",
"description": "Finds changes between two OpenAPI schemas",
"main": "index.js",
"scripts": {
"lint": "eslint",
"lint:fix": "eslint --fix",
"test:unit": "c8 --100 node --test",
"test": "npm run lint && npm run test:unit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fastify/openapi-schema-diff.git"
},
"keywords": [
"openapi",
"schema",
"diff",
"json"
],
"author": "Ivan Tymoshenko <ivan@tymoshenko.me>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fastify/openapi-schema-diff/issues"
},
"homepage": "https://github.com/fastify/openapi-schema-diff#readme",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/fastify"
},
{
"type": "opencollective",
"url": "https://opencollective.com/fastify"
}
],
"dependencies": {
"json-schema-ref-resolver": "^3.0.0",
"semver": "^7.5.4"
},
"devDependencies": {
"c8": "^11.0.0",
"eslint": "^9.17.0",
"neostandard": "^0.13.0"
}
}