-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.22 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.22 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@loopback/tsdocs",
"description": "A package to generate api docs using Microsoft api-extractor and api-documenter",
"version": "7.0.2",
"keywords": [
"LoopBack",
"Apidocs",
"Reflect"
],
"license": "MIT",
"bin": {
"lb-extract-apidocs": "./bin/extract-apis.js",
"lb-document-apidocs": "./bin/document-apis.js",
"lb-update-apidocs": "./bin/update-apidocs.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "IBM Corp. and LoopBack contributors",
"copyright.owner": "IBM Corp. and LoopBack contributors",
"repository": {
"type": "git",
"url": "https://github.com/loopbackio/loopback-next.git",
"directory": "packages/tsdocs"
},
"engines": {
"node": "20 || 22 || 24"
},
"scripts": {
"build:tsdocs": "npm run build && npm run -s extract-apidocs && npm run -s document-apidocs && npm run -s update-apidocs",
"extract-apidocs": "node bin/extract-apis",
"document-apidocs": "node bin/document-apis markdown -i ../../docs/apidocs/models -o ../../docs/site/apidocs",
"update-apidocs": "node bin/update-apidocs",
"build": "lb-tsc",
"build:fixtures": "npm run build --prefix fixtures/monorepo",
"clean": "lb-clean loopback-tsdocs*.tgz dist *.tsbuildinfo package",
"pretest": "npm run build",
"test": "lb-mocha \"dist/__tests__/**/*.js\"",
"verify": "npm pack && tar xf loopback-tsdocs*.tgz && tree package && npm run clean"
},
"publishConfig": {
"access": "public"
},
"files": [
"README.md",
"dist",
"src",
"!*/__tests__",
"!/fixtures"
],
"dependencies": {
"@lerna/project": "^6.4.1",
"@microsoft/api-documenter": "^7.26.30",
"@microsoft/api-extractor": "^7.52.9",
"@npmcli/map-workspaces": "^4.0.2",
"@npmcli/package-json": "^6.2.0",
"debug": "^4.4.1",
"fs-extra": "^11.3.0",
"tslib": "^2.8.1"
},
"devDependencies": {
"@loopback/build": "^12.0.2",
"@loopback/eslint-config": "^16.0.0",
"@loopback/testlab": "^8.0.2",
"@loopback/tsdocs-monorepo": "^0.6.2",
"@types/debug": "^4.1.12",
"@types/fs-extra": "^11.0.4",
"@types/node": "^16.18.126",
"@types/npmcli__map-workspaces": "^3.0.4",
"@types/npmcli__package-json": "^4.0.4"
}
}