-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.63 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
{
"name": "@kongying-tavern/file-compare",
"version": "0.0.0",
"main": "index.js",
"type": "module",
"license": "MIT",
"scripts": {
"commit": "cz",
"compare": "node index.js",
"lint": "eslint --ext .js,.ts .",
"release": "semantic-release",
"yalc": "yalc publish"
},
"description": "Compare file differences between two directories and generate report",
"keywords": [
"backend",
"cli",
"kongying-cli-plugin",
"kongying-cmd-compare"
],
"dependencies": {
"fs-extra": "^10.0.1",
"globby": "^13.1.1",
"lodash": "^4.17.21",
"md5": "^2.3.0",
"p-queue": "^7.2.0",
"progress": "^2.0.3",
"string-natural-compare": "^3.0.1",
"yargs": "^17.3.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "3.3.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"semantic-release": "^19.0.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github"
]
},
"publishConfig": {
"access": "public"
},
"packageManager": "[email protected]+sha512.9c2cb83f2b6cf6a25d8c58300bf99197c7ef3be84cf3e766f29054b40b83b42f8aaba6fcc314a9ecf27c00f7ce80a757bb4c608800e7adbe2d29dc5c7056f5be"
}