forked from pahen/madge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.98 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
{
"name": "madge",
"version": "5.0.1",
"author": "Patrik Henningsson <patrik.henningsson@gmail.com>",
"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": "^10.13 || ^12 || >=14"
},
"main": "./lib/api",
"bin": "./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"
},
"funding": {
"type": "individual",
"url": "https://www.paypal.me/pahen"
},
"dependencies": {
"chalk": "^4.1.1",
"commander": "^7.2.0",
"commondir": "^1.0.1",
"debug": "^4.3.1",
"dependency-tree": "^8.1.2",
"detective-amd": "^3.1.0",
"detective-cjs": "^3.1.1",
"detective-es6": "^2.2.0",
"detective-less": "^1.0.2",
"detective-postcss": "^5.0.0",
"detective-sass": "^3.0.1",
"detective-scss": "^2.0.1",
"detective-stylus": "^1.0.0",
"detective-typescript": "^9.0.0",
"graphviz": "0.0.9",
"ora": "^5.4.1",
"pluralize": "^8.0.0",
"precinct": "^9.0.1",
"pretty-ms": "^7.0.1",
"rc": "^1.2.7",
"typescript": "^4.5.5",
"walkdir": "^0.4.1"
},
"devDependencies": {
"@aptoma/eslint-config": "^7.0.1",
"eslint": "^7.29.0",
"mocha": "^9.0.1",
"mz": "^2.7.0",
"should": "^13.2.3"
},
"resolutions": {
"precinct": "9.0.1"
}
}