-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.27 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "docker-deps",
"version": "1.0.0",
"description": "Extract the minimal dependency definition files needed to build Docker image, also compatible with monorepo.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"bin": {
"docker-deps": "dist/docker-deps.js"
},
"scripts": {
"prepare": "husky",
"build": "rollup -c",
"test": "npx jest",
"pretest": "npm run build",
"precheck-types": "npm run build",
"format": "prettier --list-different \"./{src,__tests__}/**/*.ts\"",
"lint": "eslint",
"check-types": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"keywords": [
"CLI",
"Docker",
"Dockerfile",
"monorepo",
"package.json",
"package-lock.json",
"deps",
"Dependencies"
],
"engines": {
"node": "20 || >=22"
},
"author": "jia-niang <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jia-niang/docker-deps/"
},
"bugs": {
"url": "https://github.com/jia-niang/docker-deps/issues"
},
"dependencies": {
"commander": "^13.0.0",
"glob": "^11.0.1",
"picocolors": "^1.1.1",
"read-pkg": "^5.2.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@commitlint/cz-commitlint": "^19.6.1",
"@eslint/js": "^9.18.0",
"@jest/globals": "^29.7.0",
"@rollup/plugin-typescript": "^12.1.2",
"@trivago/prettier-plugin-sort-imports": "^5.2.1",
"@types/node": "^22.10.5",
"babel-jest": "^29.7.0",
"commitizen": "^4.3.1",
"eslint": "^9.18.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.14.0",
"husky": "^9.1.7",
"inquirer": "^9.3.7",
"jest": "^29.7.0",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"rollup": "^4.34.6",
"rollup-plugin-dts": "^6.1.1",
"semver": "^7.6.3",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.19.1"
},
"files": [
"dist/**"
],
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"lint-staged": {
"*.{ts}": [
"eslint"
]
}
}