-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
76 lines (76 loc) · 1.77 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "cycle-import-check",
"version": "1.4.0",
"description": "ES6 circular dependency check tool, support js, ts, jsx, tsx and mjs files",
"main": "./lib/index.js",
"engines": {
"node": ">=14"
},
"bin": {
"iscan": "lib/cli.js",
"cycle-import-scan": "lib/cli.js"
},
"dependencies": {
"@babel/parser": "^7.21.2",
"@babel/traverse": "^7.21.2",
"@newdash/graphlib": "^3.1.4",
"@newdash/newdash": "^5.21.4",
"cli": "^1.0.1",
"colors": "^1.4.0",
"find-package-json": "^1.2.0",
"glob": "^11.0.0"
},
"devDependencies": {
"@types/cli": "0.11.25",
"@types/glob": "8.1.0",
"@types/jest": "29.5.14",
"@types/node": "22.10.10",
"@types/uuid": "10.0.0",
"jest": "29.7.0",
"ts-jest": "29.2.5",
"typescript": "5.7.3"
},
"optionalDependencies": {
"fsevents": "^2.3.2"
},
"typings": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"test:watch": "npm test -- --watch",
"coverage": "npm test -- --coverage --no-cache",
"coverage:watch": "npm run coverage -- --watch",
"release": "npx standard-version",
"prepublishOnly": "npm run build && npm test"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"collectCoverageFrom": [
"src/**/*.ts"
],
"coveragePathIgnorePatterns": [
"/tests/",
"/node_modules/",
"/src/cli"
],
"testEnvironment": "node",
"testRegex": "tests/.*\\.spec\\.ts$",
"moduleFileExtensions": [
"ts",
"js",
"json"
]
},
"author": {
"name": "Theo Sun",
"email": "[email protected]",
"url": "https://github.com/Soontao"
},
"repository": {
"type": "git",
"url": "https://github.com/Soontao/cycle-import-check"
},
"license": "MIT"
}