-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
75 lines (75 loc) · 2.22 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
{
"name": "docs-ts",
"version": "0.8.0",
"description": "Documentation tool for TypeScript packages",
"files": [
"lib"
],
"main": "lib/index.js",
"bin": "lib/bin.js",
"typings": "lib/index.d.ts",
"scripts": {
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
"lint-fix": "eslint --fix \"src/**/*.ts\" \"test/**/*.ts\"",
"vitest": "vitest",
"coverage": "vitest run --coverage",
"prettier": "prettier --parser typescript --list-different \"{src,test}/**/*.ts\"",
"fix-prettier": "prettier --parser typescript --write \"{src,test}/**/*.ts\"",
"test": "npm run prettier && npm run vitest && npm run docs",
"clean": "rimraf rm -rf lib/*",
"build": "npm run clean && tsc -p tsconfig.build.json",
"prepublish": "npm run build",
"mocha": "mocha -r ts-node/register test/*.ts",
"doctoc": "doctoc README.md --title \"**Table of contents**\"",
"docs": "ts-node docs.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/gcanti/docs-ts.git"
},
"author": "Giulio Canti <giulio.canti@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gcanti/docs-ts/issues"
},
"homepage": "https://github.com/gcanti/docs-ts",
"dependencies": {
"chalk": "^2.4.2",
"doctrine": "^3.0.0",
"fp-ts": "^2.15.0",
"fs-extra": "^7.0.1",
"glob": "^7.1.6",
"io-ts": "^2.2.20",
"logging-ts": "^0.3.4",
"markdown-toc": "^1.2.0",
"rimraf": "^2.7.1",
"ts-morph": "^9.1.0",
"ts-node": "^8.10.2"
},
"devDependencies": {
"@types/doctrine": "0.0.3",
"@types/fs-extra": "^5.0.5",
"@types/glob": "^7.1.3",
"@types/node": "^18.16.6",
"@types/prettier": "^1.19.1",
"@types/rimraf": "^2.0.4",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"@vitest/coverage-c8": "^0.31.0",
"doctoc": "^1.4.0",
"eslint": "^8.40.0",
"eslint-plugin-deprecation": "^1.4.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-simple-import-sort": "^10.0.0",
"prettier": "^2.2.1",
"typescript": "^5.0.4",
"vite": "^4.3.5",
"vitest": "^0.31.0"
},
"peerDependencies": {
"prettier": "^2.0.0",
"typescript": "^5.x"
},
"tags": [],
"keywords": []
}