-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.52 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
{
"name": "package-analyser",
"version": "1.0.3",
"description": "package-analyser 是一个简单易用的分析依赖以及依赖体积的 NodeJS 命令行工具。",
"keywords": [
"package",
"analyze",
"analysis",
"analyzer",
"size"
],
"author": "Jackson-Mseven,leviash,幻小芒,xun-zi",
"license": "MIT",
"main": "./dist/bin/index.js",
"scripts": {
"test": "vitest",
"prepare": "husky install"
},
"devDependencies": {
"@types/js-yaml": "^4.0.5",
"@types/node": "^20.4.5",
"@types/yarnpkg__lockfile": "^1.1.6",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.9.0",
"eslint-config-standard-with-typescript": "^37.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "^3.0.0",
"typescript": "^5.1.6",
"vitest": "^0.34.3"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
},
"bin": {
"analyze-cli": "./dist/bin/index.js"
},
"dependencies": {
"@yarnpkg/lockfile": "^1.1.0",
"commander": "^11.0.0",
"express": "^4.18.2",
"js-yaml": "^4.1.0",
"remote-file-size": "^3.0.5",
"semver": "^7.5.4"
}
}