-
-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathpackage.json
64 lines (64 loc) · 2.06 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
{
"name": "@api-platform/api-doc-parser",
"version": "0.16.7",
"description": "Transform an API documentation (Hydra, OpenAPI, GraphQL) in an intermediate representation that can be used for various tasks such as creating smart API clients, scaffolding code or building administration interfaces.",
"files": [
"*.md",
"lib",
"src"
],
"type": "module",
"exports": "./lib/index.js",
"main": "./lib/index.js",
"repository": "api-platform/api-doc-parser",
"homepage": "https://github.com/api-platform/api-doc-parser",
"bugs": "https://github.com/api-platform/api-doc-parser/issues",
"author": "Kévin Dunglas",
"license": "MIT",
"devDependencies": {
"@eslint/compat": "^1.2.5",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.19.0",
"@types/inflection": "^1.13.0",
"@types/jest": "^29.0.0",
"@types/jsonld": "^1.5.0",
"@types/lodash.get": "^4.4.0",
"@types/node": "^22.0.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.0.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-watch": "^8.0.0",
"globals": "^15.14.0",
"jest": "^29.0.0",
"jest-fetch-mock": "^3.0.0",
"openapi-types": "^12.0.0",
"prettier": "^3.0.0",
"ts-jest": "^29.0.0",
"ts-node": "^10.9.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.22.0"
},
"dependencies": {
"graphql": "^16.0.0",
"inflection": "^3.0.0",
"jsonld": "^8.3.2",
"jsonref": "^9.0.0",
"lodash.get": "^4.4.0",
"tslib": "^2.0.0"
},
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"lint": "eslint src",
"fix": "yarn lint --fix",
"eslint-check": "eslint-config-prettier src/index.ts",
"build": "rm -rf lib/* && tsc",
"watch": "tsc --watch"
},
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}