-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.29 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
{
"name": "circular-deps-check",
"version": "1.0.3",
"description": "Detect circular dependencies in modules",
"repository": "[email protected]:woophi/circular-deps-check.git",
"author": "konst <[email protected]>",
"license": "MIT",
"keywords": [
"fast",
"plugin",
"typescript",
"webpack"
],
"files": [
"lib"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"prepublish": "yarn test && yarn build:ts",
"build:ts": "tsc --project tsconfig.json",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"release": "release-it"
},
"peerDependencies": {
"webpack": ">=4.0.1"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-typescript": "^7.15.0",
"@types/jest": "^27.0.1",
"@types/memory-fs": "^0.3.3",
"babel-jest": "^27.0.6",
"jest": "^27.0.6",
"memory-fs": "^0.5.0",
"release-it": "^14.11.5",
"ts-loader": "^9.2.5",
"typescript": "^4.3.5",
"webpack": "^4.0.1",
"webpack5": "npm:webpack@^5.51.1"
},
"dependencies": {
"chalk": "^4.1.2"
},
"jest": {
"testMatch": [
"**/?(*.)(spec|test).ts?(x)"
],
"coverageDirectory": "./coverage",
"testEnvironment": "node"
}
}