-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.08 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
{
"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 <[email protected]>",
"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": "^2.0.0",
"semver": "^7.5.4"
},
"devDependencies": {
"c8": "^10.1.3",
"eslint": "^9.17.0",
"neostandard": "^0.12.0"
}
}