-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
43 lines (43 loc) · 1.19 KB
/
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
43
{
"name": "ts_dependency_graph",
"version": "2.1.1",
"description": "prints a dependency graph in dot format for your typescript or react project",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublish": "tsc",
"build": "tsc",
"format": "npx prettier --write .",
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/PSeitz/ts-dependency-graph.git"
},
"bugs": {
"url": "https://github.com/PSeitz/ts-dependency-graph/issues"
},
"homepage": "https://github.com/PSeitz/ts-dependency-graph",
"author": "",
"license": "ISC",
"dependencies": {
"glob": "^7.1.6",
"typescript": "^4.9.5",
"yargs": "^15.3.1"
},
"devDependencies": {
"@types/glob": "^7.1.2",
"@types/jest": "^26.0.14",
"@types/node": "^14.0.14",
"@types/react": "^18.0.35",
"@types/yargs": "^15.0.5",
"jest": "^26.5.3",
"prettier": "2.1.2",
"react": "^18.2.0",
"ts-jest": "^26.4.1",
"ts-node": "^8.10.2"
},
"bin": {
"ts_dependency_graph": "./dist/index.js"
}
}