-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
47 lines (47 loc) · 1.58 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
{
"name": "check-imports",
"version": "1.0.8",
"description": "Node.js tool that helps to control validity of imports and dependencies in a project",
"main": "./dist/api/index.mjs",
"type": "module",
"bin": {
"check-imports": "./dist/cli.mjs"
},
"scripts": {
"ncu": "npx npm-check-updates -u -x **eslint** && npm i",
"test": "npm run build && npm run unit",
"unit": "node test/index.mjs",
"build": "tsc && chmod +x ./dist/cli.mjs",
"lint": "eslint 'api/**/*.js' 'test/**/*.js' '*.js' --ignore-pattern '**/node_modules/**/*'",
"check-imports": "node dist/cli.mjs -d src",
"patch": "npm version patch && npm run test && npm publish && git push && git push --tags",
"minor": "npm version minor && npm run test && npm publish && git push && git push --tags",
"BREAKING-major": "npm version major && npm run test && npm publish && git push && git push --tags"
},
"author": "Andrey Gubanov",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/finom/check-imports"
},
"dependencies": {
"@babel/parser": "^7.26.1",
"@babel/traverse": "^7.25.9",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"find-up": "^7.0.0",
"glob": "^11.0.0",
"npm-registry-fetch": "^18.0.2",
"ts-morph": "^24.0.0"
},
"devDependencies": {
"@types/npm-registry-fetch": "^8.0.7",
"babel-eslint": "^10.0.3",
"eslint": "6.1.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.18.2",
"type-fest": "^4.26.1",
"typescript": "^5.6.3"
}
}