UNPKG

1.17 kBJSONView Raw
1{
2 "name": "@microsoft/tsdoc",
3 "version": "0.12.15",
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 "@rushstack/eslint-config": "0.4.0",
25 "@types/jest": "24.0.16",
26 "eslint": "^6.0.0",
27 "jest": "~24.8.0",
28 "prettier": "~1.18.2",
29 "rimraf": "~2.6.3",
30 "ts-jest": "~24.0.2",
31 "typescript": "~3.5.3"
32 },
33 "scripts": {
34 "build": "node ./build.js",
35 "test": "jest",
36 "watch": "jest --watch",
37 "lint": "eslint -f unix \"src/**/*.{ts,tsx}\""
38 },
39 "jest": {
40 "moduleFileExtensions": [
41 "ts",
42 "tsx",
43 "js",
44 "jsx"
45 ],
46 "transform": {
47 "^.+\\.tsx?$": "ts-jest"
48 },
49 "testMatch": [
50 "<rootDir>/src/**/*.test.ts"
51 ]
52 }
53}