forked from pahen/madge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.54 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
{
"name": "madge",
"version": "3.3.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": ">=6.x.x"
},
"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"
},
"dependencies": {
"chalk": "^2.4.1",
"commander": "^2.15.1",
"commondir": "^1.0.1",
"debug": "^4.0.1",
"dependency-tree": "^6.1.0",
"graphviz": "^0.0.8",
"ora": "^3.0.0",
"pify": "^4.0.0",
"pluralize": "^7.0.0",
"pretty-ms": "^4.0.0",
"rc": "^1.2.7",
"walkdir": "^0.0.12"
},
"devDependencies": {
"@aptoma/eslint-config": "^7.0.1",
"eslint": "^5.6.0",
"mocha": "^5.1.1",
"mz": "^2.7.0",
"should": "^13.2.3"
}
}