-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.37 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@justforfun/codemapper",
"version": "1.2.1",
"description": "A pretty dependency mapper for Typescript & Angular",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"start": "npm run build && node ./lib",
"test": "jest --config=jestconfig.json",
"build": "tsc --outDir ./lib",
"docs": "typedoc --out docs src/",
"prepare": "npm run build"
},
"preferGlobal": true,
"bin": {
"codemapper": "./lib/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thejff/codemapper.git"
},
"homepage": "https://thejustforfun.foundation",
"keywords": [
"dependency",
"mapper",
"angular",
"typescript",
"code",
"map",
"mapping",
"graph",
"dependencies"
],
"files": [
"lib"
],
"author": "Chris Holdt <[email protected]> (https://chrisholdt.com)",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.4",
"@types/node": "^13.13.5",
"jest": "^29.6.4",
"nodemon": "^2.0.3",
"prettier": "^2.0.5",
"ts-jest": "^29.1.1",
"ts-node": "^8.10.1",
"typedoc": "^0.17.6",
"typescript": "^5.2.2"
},
"dependencies": {
"@types/shelljs": "^0.8.7",
"figlet": "^1.4.0",
"shelljs": "^0.8.4"
},
"directories": {
"doc": "docs"
},
"bugs": {
"url": "https://github.com/thejff/codemapper/issues"
}
}