UNPKG

2 kBJSONView Raw
1{
2 "name": "typedoc",
3 "description": "Create api documentations for typescript projects.",
4 "version": "0.7.0",
5 "homepage": "http://typedoc.org",
6 "main": "dist/index.js",
7 "typings": "dist/index.d.ts",
8 "bin": {
9 "typedoc": "bin/typedoc"
10 },
11 "author": {
12 "name": "Sebastian Lenz",
13 "url": "http://www.sebastian-lenz.de/"
14 },
15 "license": "Apache-2.0",
16 "repository": {
17 "type": "git",
18 "url": "git://github.com/TypeStrong/TypeDoc.git"
19 },
20 "bugs": {
21 "url": "https://github.com/TypeStrong/TypeDoc/issues"
22 },
23 "licenses": [
24 {
25 "type": "Apache-2.0",
26 "url": "https://github.com/TypeStrong/TypeDoc/blob/master/LICENSE"
27 }
28 ],
29 "engines": {
30 "node": ">= 4.2.0"
31 },
32 "dependencies": {
33 "@types/fs-extra": "^3.0.0",
34 "@types/handlebars": "^4.0.31",
35 "@types/highlight.js": "^9.1.8",
36 "@types/lodash": "^4.14.37",
37 "@types/marked": "0.0.28",
38 "@types/minimatch": "^2.0.29",
39 "@types/shelljs": "^0.7.0",
40 "fs-extra": "^3.0.0",
41 "handlebars": "^4.0.6",
42 "highlight.js": "^9.0.0",
43 "lodash": "^4.13.1",
44 "marked": "^0.3.5",
45 "minimatch": "^3.0.0",
46 "progress": "^2.0.0",
47 "shelljs": "^0.7.0",
48 "typedoc-default-themes": "^0.5.0",
49 "typescript": "2.3.2"
50 },
51 "devDependencies": {
52 "@types/mocha": "^2.2.39",
53 "grunt": "^1.0.1",
54 "grunt-cli": "^1.2.0",
55 "grunt-contrib-clean": "^1.0.0",
56 "grunt-contrib-copy": "^1.0.0",
57 "grunt-contrib-watch": "^1.0.0",
58 "grunt-mocha-istanbul": "^5.0.1",
59 "grunt-string-replace": "^1.2.0",
60 "grunt-ts": "^5.5.1",
61 "grunt-tslint": "^5.0.1",
62 "istanbul": "^0.4.1",
63 "mocha": "^3.0.2",
64 "tslint": "^5.1.0"
65 },
66 "files": [
67 "bin",
68 "dist",
69 "!dist/test",
70 "tasks",
71 "LICENSE"
72 ],
73 "scripts": {
74 "test": "mocha -t 4000 dist/test",
75 "build": "grunt build_and_test",
76 "prepublish": "npm run build"
77 },
78 "keywords": [
79 "typescript",
80 "documentation",
81 "generator",
82 "gruntplugin"
83 ]
84}