-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 879 Bytes
/
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
{
"name": "json-typescript-docs",
"version": "0.6.0",
"description": "Create JSON file from TypeScript code.",
"license": "MIT",
"main": "dist/main.js",
"typings": "typings/main.d.ts",
"scripts": {
"exec": "node dist/main.js",
"watch": "tsc -w",
"prepublish": "tsc"
},
"files": [
"dist",
"typings"
],
"repository": {
"type": "git",
"url": "https://github.com/asakusuma/json-typescript-docs"
},
"engines": {
"node": ">= 0.10.0"
},
"author": {
"name": "Asa Kusuma"
},
"homepage": "https://github.com/asakusuma/json-typescript-docs",
"bin": {
"jtd": "./dist/main.js"
},
"dependencies": {
"jsonfile": "^2.4.0",
"marked": "^0.3.6",
"slug": "^0.9.1",
"typedoc": "^0.9.0",
"walk-sync": "^0.3.1"
},
"devDependencies": {
"@types/node": "^7.0.11",
"typescript": "^2.6.1"
}
}