-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 955 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
{
"name": "ts-print-tree",
"version": "1.5.0",
"description": "Print a file tree of a project and its exports",
"homepage": "https://github.com/grrowl/ts-print-tree",
"keywords": [
"TypeScript",
"Microsoft",
"compiler",
"language",
"javascript"
],
"bugs": {
"url": "https://github.com/grrowl/ts-print-tree/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/grrowl/ts-print-tree.git"
},
"main": "dist/index.js",
"bin": {
"ts-print-tree": "dist/cli.js"
},
"scripts": {
"build": "tsc && chmod +x dist/cli.js",
"start": "node dist/cli.js",
"test": "jest",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/node": "^20.14.9",
"jest": "^29.7.0",
"ts-jest": "^29.1.5"
},
"dependencies": {
"typescript": "^4.9.5"
},
"author": "Tom McKenzie <[email protected]>",
"license": "ISC"
}