UNPKG

2.28 kBJSONView Raw
1{
2 "name": "madge",
3 "version": "6.1.0",
4 "author": "Patrik Henningsson <patrik.henningsson@gmail.com>",
5 "repository": "git://github.com/pahen/madge",
6 "homepage": "https://github.com/pahen/madge",
7 "license": "MIT",
8 "reveal": true,
9 "description": "Create graphs from module dependencies.",
10 "keywords": [
11 "ES6",
12 "ES7",
13 "AMD",
14 "RequireJS",
15 "require",
16 "module",
17 "circular",
18 "dependency",
19 "dependencies",
20 "graphviz",
21 "graph"
22 ],
23 "engines": {
24 "node": ">=14"
25 },
26 "main": "./lib/api",
27 "bin": {
28 "madge": "./bin/cli.js"
29 },
30 "scripts": {
31 "test": "npm run lint && npm run mocha",
32 "mocha": "mocha test/*.js",
33 "watch": "mocha --watch --growl test/*.js",
34 "lint": "eslint bin/cli.js lib test/*.js",
35 "debug": "node bin/cli.js --debug bin lib",
36 "generate": "npm run generate:small && npm run generate:madge",
37 "generate:small": "bin/cli.js --image /tmp/simple.svg test/cjs/circular/a.js",
38 "generate:madge": "bin/cli.js --image /tmp/madge.svg bin lib",
39 "test:output": "./test/output.sh",
40 "release": "npm test && release-it"
41 },
42 "funding": {
43 "type": "individual",
44 "url": "https://www.paypal.me/pahen"
45 },
46 "dependencies": {
47 "chalk": "^4.1.1",
48 "commander": "^7.2.0",
49 "commondir": "^1.0.1",
50 "debug": "^4.3.1",
51 "dependency-tree": "^9.0.0",
52 "detective-amd": "^4.0.1",
53 "detective-cjs": "^4.0.0",
54 "detective-es6": "^3.0.0",
55 "detective-less": "^1.0.2",
56 "detective-postcss": "^6.1.0",
57 "detective-sass": "^4.0.1",
58 "detective-scss": "^3.0.0",
59 "detective-stylus": "^2.0.1",
60 "detective-typescript": "^9.0.0",
61 "ora": "^5.4.1",
62 "pluralize": "^8.0.0",
63 "precinct": "^8.1.0",
64 "pretty-ms": "^7.0.1",
65 "rc": "^1.2.7",
66 "stream-to-array": "^2.3.0",
67 "ts-graphviz": "^1.5.0",
68 "walkdir": "^0.4.1"
69 },
70 "peerDependencies": {
71 "typescript": "^3.9.5 || ^4.9.5 || ^5"
72 },
73 "peerDependenciesMeta": {
74 "typescript": {
75 "optional": true
76 }
77 },
78 "devDependencies": {
79 "@aptoma/eslint-config": "^7.0.1",
80 "auto-changelog": "^2.4.0",
81 "eslint": "^7.29.0",
82 "mocha": "^9.0.1",
83 "mz": "^2.7.0",
84 "release-it": "^15.6.0",
85 "should": "^13.2.3",
86 "typescript": "^4.9.5"
87 }
88}