-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.48 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
{
"name": "find-duplicate-strings",
"version": "2.1.6",
"description": "Easy to use CLI that finds duplicate strings in a directory and stores them in a external file for easy reference",
"author": "Erwin Heitzman",
"homepage": "https://github.com/erwinheitzman/find-duplicate-strings/blob/master/README.md",
"license": "MIT",
"main": "lib/cli/index.js",
"types": "lib/cli/index.d.ts",
"bin": "lib/cli/index.js",
"files": [
"/lib"
],
"scripts": {
"prepare": "husky install",
"prepublishOnly": "tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/erwinheitzman/find-duplicate-strings.git"
},
"keywords": [
"duplicate",
"duplicates",
"strings",
"duplication",
"scan",
"find",
"find-duplicate-strings",
"search"
],
"bugs": {
"url": "https://github.com/erwinheitzman/find-duplicate-strings/issues"
},
"dependencies": {
"commander": "^8.3.0",
"inquirer": "^8.2.0"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/inquirer": "^8.1.3",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.10",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.4",
"jest": "^27.3.1",
"lint-staged": "^12.1.2",
"prettier": "^2.4.1",
"ts-jest": "^27.0.7",
"typescript": "^4.5.2"
},
"lint-staged": {
"**/*.{js,ts}": [
"eslint --fix"
],
"**/*.{yml,json,md,ts,js}": [
"prettier --write"
]
}
}