This repository has been archived by the owner on Apr 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 1.91 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
65
66
67
68
69
70
71
72
{
"name": "typedoc-plugin-resolve-crossmodule-references",
"version": "0.3.3",
"description": "TypeDoc plugin for resolving cross module reference in a mono-repository",
"main": "dist",
"repository": {
"type": "git",
"url": "https://github.com/nlepage/typedoc-plugin-resolve-crossmodule-references"
},
"author": {
"name": "Nicolas Lepage",
"url": "https://github.com/nlepage"
},
"license": "Apache-2.0",
"keywords": [
"typedoc-plugin"
],
"engines": {
"node": ">=14"
},
"files": [
"dist"
],
"workspaces": [
"test/packages/*"
],
"packageManager": "[email protected]",
"peerDependencies": {
"typedoc": ">=0.22 <=0.23"
},
"devDependencies": {
"@ava/typescript": "^3.0.1",
"@tsconfig/node14": "^1.0.3",
"@types/node": "^18.11.12",
"ava": "^5.1.0",
"prettier": "^2.8.1",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typedoc": "^0.23.21",
"typescript": "^4.9.4"
},
"scripts": {
"build": "yarn clean && tsc",
"ci": "yarn build && yarn lint && yarn test",
"clean": "rimraf dist",
"lint": "tslint -p .",
"test": "yarn test:clean && yarn test:build && yarn test:generate && ava",
"test:build": "yarn workspaces foreach -t --from '{@typedoc-plugin-resolve-crossmodule-references/a,@typedoc-plugin-resolve-crossmodule-references/b,@typedoc-plugin-resolve-crossmodule-references/c,@typedoc-plugin-resolve-crossmodule-references/d}' run build",
"test:clean": "rimraf test/docs.json test/packages/a/dist test/packages/b/dist",
"test:generate": "cd test && yarn typedoc"
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true
},
"ava": {
"extensions": [
"ts"
],
"files": [
"test/**/*",
"!test/packages"
],
"require": [
"ts-node/register"
]
}
}