-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 1.98 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
73
74
75
76
77
78
{
"name": "@tsed/root",
"version": "5.0.0",
"description": "Generate documentation in markdown for TypeScript API",
"main": "./src/index.js",
"bin": "./bin/tsdoc.js",
"private": true,
"scripts": {
"configure": "monorepo ci configure",
"test": "yarn test:lint && yarn test:coverage",
"test:unit": "cross-env NODE_ENV=test mocha",
"test:coverage": "cross-env NODE_ENV=test nyc mocha",
"test:lint": "eslint",
"test:lint:fix": "eslint --fix",
"build": "monorepo build",
"sync:packages": "monorepo sync packages",
"release": "semantic-release",
"release:dryRun": "semantic-release --dry-run"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"post-commit": "git update-index --again"
}
},
"repository": {
"type": "git",
"url": "https://github.com/tsedio/ts-doc.git"
},
"keywords": [
"Vuepress",
"Typescript",
"documentation",
"API"
],
"author": "Romakita",
"license": "MIT",
"bugs": {
"url": "https://github.com/tsedio/ts-doc/issues"
},
"homepage": "https://github.com/tsedio/ts-doc#readme",
"dependencies": {
"lerna": "3.22.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "8.8.0",
"@typescript-eslint/parser": "8.8.0",
"@tsed/monorepo-utils": "1.11.0",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"cross-env": "7.0.2",
"eslint": "9.13.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-vitest": "0.5.4",
"proxyquire": "2.1.3",
"husky": "4.3.0",
"lint-staged": "10.4.0",
"mocha": "8.1.3",
"nyc": "15.1.0",
"prettier": "3.3.3",
"semantic-release": "17.2.3",
"sinon": "9.0.3",
"sinon-chai": "3.5.0",
"typescript": "5.6.3"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"monorepo": {
"productionBranch": "master",
"developBranch": "master",
"npmAccess": "public"
}
}