forked from aackerman/circular-dependency-plugin
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 945 Bytes
/
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
{
"name": "circular-dependency-plugin",
"main": "index.js",
"devDependencies": {
"jest": "^22.4.2",
"memory-fs": "^0.4.1",
"ts-loader": "^8.0.7",
"typescript": "^4.0.5",
"webpack": "^4.0.1",
"webpack5": "npm:webpack@^5.0.0"
},
"peerDependencies": {
"webpack": ">=4.0.1"
},
"description": "Detect modules with circular dependencies when bundling with webpack.",
"version": "5.2.2",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"test": "jest"
},
"files": [
"index.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/aackerman/circular-dependency-plugin.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/aackerman/circular-dependency-plugin/issues"
},
"homepage": "https://github.com/aackerman/circular-dependency-plugin#readme",
"jest": {
"testMatch": [
"**/?(*.)(spec|test).js?(x)"
]
}
}