UNPKG

1.12 kBJSONView Raw
1{
2 "name": "@microsoft/tsdoc",
3 "version": "0.12.12",
4 "description": "A parser for the TypeScript doc comment syntax",
5 "keywords": [
6 "TypeScript",
7 "documentation",
8 "doc",
9 "comments",
10 "JSDoc",
11 "parser",
12 "standard"
13 ],
14 "repository": {
15 "type": "git",
16 "url": "https://github.com/Microsoft/tsdoc"
17 },
18 "homepage": "https://github.com/Microsoft/tsdoc",
19 "main": "lib/index.js",
20 "typings": "lib/index.d.ts",
21 "license": "MIT",
22 "dependencies": {},
23 "devDependencies": {
24 "@types/jest": "24.0.16",
25 "jest": "~24.8.0",
26 "ts-jest": "~24.0.2",
27 "prettier": "~1.18.2",
28 "rimraf": "~2.6.3",
29 "tslint": "~5.18.0",
30 "tslint-microsoft-contrib": "~6.2.0",
31 "typescript": "~3.5.3"
32 },
33 "scripts": {
34 "build": "node ./build.js",
35 "test": "jest",
36 "watch": "jest --watch"
37 },
38 "jest": {
39 "moduleFileExtensions": [
40 "ts",
41 "tsx",
42 "js",
43 "jsx"
44 ],
45 "transform": {
46 "^.+\\.tsx?$": "ts-jest"
47 },
48 "testMatch": [
49 "<rootDir>/src/**/*.test.ts"
50 ]
51 }
52}