-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
44 lines (44 loc) · 1.33 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
{
"name": "@api-platform/api-platform-doc-parsing-check",
"version": "0.2.0",
"description": "API Platform Documentation parsing check",
"files": [
"*.md",
"lib",
"src"
],
"bin": {
"api-platform-doc-parsing-check": "./lib/index.js"
},
"type": "module",
"exports": "./lib/index.js",
"module": "./lib/index.js",
"repository": "api-platform/api-platform-doc-parsing-check",
"homepage": "https://github.com/api-platform/api-platform-doc-parsing-check",
"bugs": "https://github.com/api-platform/api-platform-doc-parsing-check/issues",
"author": "Piotr Synowiec",
"license": "MIT",
"devDependencies": {
"@types/jsonld": "^1.5.0",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.0",
"openapi-types": "^12.0.0",
"typescript": "^4.1.0"
},
"dependencies": {
"@api-platform/api-doc-parser": "^0.15",
"chalk": "^5.0.0",
"commander": "^9.4.0"
},
"scripts": {
"lint": "eslint src",
"build": "rm -rf lib/* && tsc",
"watch": "tsc --watch",
"test-parser": "npm run build && chmod +x ./lib/index.js && ./lib/index.js https://demo.api-platform.com && mkdir -p tmp && ./lib/index.js https://demo.api-platform.com -d tmp/parsed-docs.json"
},
"publishConfig": {
"access": "public"
}
}