UNPKG

2.01 kBJSONView Raw
1{
2 "name": "madge",
3 "version": "3.9.2",
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": ">=10.x.x"
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 },
41 "funding": {
42 "type": "individual",
43 "url": "https://www.paypal.me/pahen"
44 },
45 "dependencies": {
46 "chalk": "^4.1.0",
47 "commander": "^5.1.0",
48 "commondir": "^1.0.1",
49 "debug": "^4.0.1",
50 "dependency-tree": "^7.2.1",
51 "detective-amd": "^3.0.0",
52 "detective-cjs": "^3.1.1",
53 "detective-es6": "^2.1.0",
54 "detective-less": "^1.0.2",
55 "detective-postcss": "^3.0.1",
56 "detective-sass": "^3.0.1",
57 "detective-scss": "^2.0.1",
58 "detective-stylus": "^1.0.0",
59 "detective-typescript": "^5.8.0",
60 "graphviz": "0.0.9",
61 "ora": "^4.0.4",
62 "pify": "^5.0.0",
63 "pluralize": "^8.0.0",
64 "precinct": "^6.3.1",
65 "pretty-ms": "^7.0.0",
66 "rc": "^1.2.7",
67 "typescript": "^3.9.5",
68 "walkdir": "^0.4.1"
69 },
70 "devDependencies": {
71 "@aptoma/eslint-config": "^7.0.1",
72 "eslint": "^6.8.0",
73 "mocha": "^8.0.1",
74 "mz": "^2.7.0",
75 "should": "^13.2.3"
76 }
77}