-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 733 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 733 Bytes
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
{
"name": "webpack-cyclic-dependency-checker",
"version": "0.0.1",
"description": "Webpack cylic dependency checker. Does a depth-first traversal of webpack's stats.json output",
"main": "src/index.js",
"scripts": {
"test": "mocha test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DelvarWorld/webpack-cyclic-dependency-checker.git"
},
"keywords": [
"webpack",
"cyclic",
"dependency",
"cycle",
"graph"
],
"author": "Andrew Ray",
"license": "MIT",
"dependencies": {
"command-line-args": "^3.0.0"
},
"bin": {
"iscyclic": "./src/cli.js"
},
"devDependencies": {
"chai": "^3.5.0",
"jasmine-node": "^1.14.5",
"mocha": "^2.5.3"
}
}