-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.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
{
"name": "gphotos-takeout-repair",
"version": "1.4.1",
"description": "Organize a Google Photos export (created with Takeout) into a useful directory of files.",
"repository": "AlecRust/gphotos-takeout-repair",
"author": "Alec Rust <[email protected]>",
"type": "module",
"license": "MIT",
"exports": "./src/index.js",
"bin": {
"gphotos-takeout-repair": "src/index.js"
},
"files": [
"src/index.js"
],
"keywords": [
"google-photos",
"takeout",
"exif",
"export"
],
"engines": {
"node": ">=16.15.1"
},
"scripts": {
"start": "node src/index.js",
"test": "vitest run",
"lint": "prettier --check . && eslint .",
"format": "prettier --write . && eslint --fix .",
"prepare": "husky",
"release": "release-it --ci"
},
"dependencies": {
"fs-extra": "^11.2.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-n": "^17.10.2",
"globals": "^15.9.0",
"husky": "^9.1.5",
"lint-staged": "^15.2.9",
"mock-fs": "^5.2.0",
"prettier": "^3.3.3",
"release-it": "^17.6.0",
"vitest": "^2.0.5"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown",
"*.js": "eslint --fix"
}
}