-
Notifications
You must be signed in to change notification settings - Fork 317
/
package.json
78 lines (78 loc) · 1.9 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
{
"name": "madge",
"version": "8.0.0",
"author": "Patrik Henningsson <[email protected]>",
"repository": "git://github.com/pahen/madge",
"homepage": "https://github.com/pahen/madge",
"license": "MIT",
"reveal": true,
"description": "Create graphs from module dependencies.",
"keywords": [
"ES6",
"ES7",
"AMD",
"RequireJS",
"require",
"module",
"circular",
"dependency",
"dependencies",
"graphviz",
"graph"
],
"engines": {
"node": ">=18"
},
"main": "./lib/api",
"bin": {
"madge": "./bin/cli.js"
},
"scripts": {
"test": "npm run lint && npm run mocha",
"mocha": "mocha test/*.js",
"watch": "mocha --watch --growl test/*.js",
"lint": "eslint bin/cli.js lib test/*.js",
"debug": "node bin/cli.js --debug bin lib",
"generate": "npm run generate:small && npm run generate:madge",
"generate:small": "bin/cli.js --image /tmp/simple.svg test/cjs/circular/a.js",
"generate:madge": "bin/cli.js --image /tmp/madge.svg bin lib",
"test:output": "./test/output.sh",
"release": "npm test && release-it"
},
"funding": {
"type": "individual",
"url": "https://www.paypal.me/pahen"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^7.2.0",
"commondir": "^1.0.1",
"debug": "^4.3.4",
"dependency-tree": "^11.0.0",
"ora": "^5.4.1",
"pluralize": "^8.0.0",
"pretty-ms": "^7.0.1",
"rc": "^1.2.8",
"stream-to-array": "^2.3.0",
"ts-graphviz": "^2.1.2",
"walkdir": "^0.4.1"
},
"peerDependencies": {
"typescript": "^5.4.4"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"devDependencies": {
"@aptoma/eslint-config": "^7.0.1",
"auto-changelog": "^2.4.0",
"eslint": "^7.29.0",
"mocha": "^9.0.1",
"mz": "^2.7.0",
"release-it": "^16.2.1",
"should": "^13.2.3",
"typescript": "^5.4.4"
}
}