-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.31 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
{
"name": "@aminzer/dir-diff-cli",
"version": "2.2.14",
"description": "Command line tool for recursive directory comparison",
"keywords": [
"directory",
"folder",
"difference",
"comparison",
"compare",
"cli"
],
"repository": {
"type": "git",
"url": "https://github.com/aminzer/dir-diff-cli.git"
},
"license": "MIT",
"author": "aminzer",
"main": "dist/index.js",
"bin": {
"dir-diff": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc --project tsconfig.json",
"build:watch": "npm run build -- --watch",
"husky:prepare": "husky install",
"lint": "eslint src/**/*.ts",
"lint:fix": "npm run lint -- --fix",
"prepare": "run-s husky:prepare build"
},
"dependencies": {
"@aminzer/dir-diff": "^4.0.13",
"chalk": "^4.1.2",
"command-line-args": "^5.2.1",
"single-line-log": "^1.1.2"
},
"devDependencies": {
"@types/node": "^20.3.3",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"eslint": "^8.44.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"husky": "^8.0.3",
"npm-run-all": "^4.1.5",
"typescript": "^5.1.6"
},
"engines": {
"node": ">=14.0.0"
}
}