forked from api-platform/api-doc-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.84 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
{
"name": "@api-platform/api-doc-parser",
"version": "0.16.4",
"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": {
"@types/inflection": "^1.13.0",
"@types/jest": "^29.0.0",
"@types/jsonld": "^1.5.0",
"@types/lodash.get": "^4.4.0",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.0.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-watch": "^8.0.0",
"jest": "^29.0.0",
"jest-fetch-mock": "^3.0.0",
"openapi-types": "^12.0.0",
"prettier": "^2.2.0",
"ts-jest": "^29.0.0",
"ts-node": "^10.9.0",
"typescript": "^4.1.0"
},
"dependencies": {
"graphql": "^16.0.0",
"inflection": "^1.13.0",
"jsonld": "^8.1.0",
"jsonref": "^8.0.0",
"lodash.get": "^4.4.0",
"tslib": "^2.0.0"
},
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"lint": "esw --color src --ext .ts",
"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"
}
}