-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.17 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "rev-dep",
"version": "1.5.4",
"description": "Dependency debugging tool for JavaScript and TypeScript projects",
"main": "dist/module.js",
"bin": "bin.js",
"files": [
"dist/**",
"lib/**",
"bin.js",
"babel.js"
],
"author": "Jakub Mazurek @jayu",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jayu/rev-dep"
},
"homepage": "https://github.com/jayu/rev-dep#readme",
"engines": {
"node": ">=10"
},
"scripts": {
"checks": "yarn lint && yarn typecheck",
"lint": "eslint --ext .js,.ts src",
"lint:fix": "yarn lint --fix",
"docs-gen": "node ./scripts/addDocsToReadme.js",
"dev": "node bin",
"test": "jest",
"release": "release-it",
"build": "tsc --declaration",
"build:watch": "tsc --watch",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@babel/core": "^7.20.12",
"@babel/parser": "^7.17.8",
"@babel/template": "^7.16.7",
"@codeque/core": "^0.4.0",
"@types/dedent": "^0.7.0",
"colorette": "^2.0.16",
"commander": "^6.1.0",
"dedent": "^0.7.0",
"dependency-cruiser": "9.23.0",
"dpdm": "^3.8.0",
"glob-escape": "^0.0.2",
"ignore": "^5.2.0",
"is-builtin-module": "^3.1.0",
"minimatch": "^5.0.1"
},
"devDependencies": {
"@babel/types": "^7.17.0",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^26.5.3",
"mock-fs": "^4.13.0",
"prettier": "^2.1.2",
"release-it": "16.2.1",
"typescript": "^4.6.2"
},
"keywords": [
"dependencies",
"deps",
"dependency graph",
"dependency debugging",
"entry points",
"dependency resolution",
"reverse dependency resolution",
"import path",
"resolution path",
"dependency optimization",
"dependency analysis",
"bundle",
"dependency tree",
"imports",
"dependencies checking",
"imports debugging",
"imports analysis",
"imports search",
"file dependencies"
]
}