-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.17 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
{
"name": "remove-duplicates-image-file",
"version": "1.0.1",
"main": "index.js",
"repository": "https://github.com/milkcoke/remove-duplicate-files.git",
"author": "milkcoke",
"license": "MIT",
"packageManager": "[email protected]",
"scripts": {
"build": "tsc -p tsconfig.json",
"lint": "eslint -c eslintrc.yaml --fix src/**/*.ts",
"test": "jest",
"start": "node dist/main.js example-images"
},
"jest": {
"rootDir": "test",
"moduleFileExtensions": [
"ts",
"js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"<rootDir>/_setup.ts"
],
"testRegex": ".*|(\\\\.|/)(test|spec)\\\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"devDependencies": {
"@types/eslint": "^8.56.5",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.24",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3"
}
}