UNPKG

1.58 kBJSONView Raw
1{
2 "name": "madge",
3 "version": "3.4.3",
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": ">=6.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 "dependencies": {
42 "chalk": "^2.4.1",
43 "commander": "^2.15.1",
44 "commondir": "^1.0.1",
45 "debug": "^4.0.1",
46 "dependency-tree": "^7.0.2",
47 "graphviz": "^0.0.8",
48 "ora": "^3.0.0",
49 "pify": "^4.0.0",
50 "pluralize": "^7.0.0",
51 "pretty-ms": "^4.0.0",
52 "rc": "^1.2.7",
53 "walkdir": "^0.0.12"
54 },
55 "devDependencies": {
56 "@aptoma/eslint-config": "^7.0.1",
57 "eslint": "^5.12.0",
58 "mocha": "^5.1.1",
59 "mz": "^2.7.0",
60 "should": "^13.2.3"
61 }
62}