-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.35 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
{
"name": "geotagger",
"version": "1.0.13",
"main": "index.js",
"author": {
"name": "Ferdinando Nocera",
"email": "nocera.ferdinando@gmail.com",
"url": "https://github.com/nocfer"
},
"license": "MIT",
"dependencies": {
"commander": "^11.1.0",
"fast-xml-parser": "^4.3.3",
"dotenv": "^16.3.2",
"joi": "^17.12.0",
"moment": "^2.30.1",
"nodemon": "^3.0.3",
"tslib": "^2.6.2",
"winston": "^3.11.0",
"xmlbuilder2": "^3.1.1"
},
"bin": {
"geotagger": "dist/index.js"
},
"keywords": [
"cli",
"npmtool",
"geotagger",
"geotag",
"geotag-images",
"exiftool",
"photos"
],
"files": [
"config",
"dist",
"default.env"
],
"scripts": {
"prepare": "tsc -p tsconfig.json --skipLibCheck",
"test": "jest --passWithNoTests --runInBand",
"clean": "rm -rf ./dist",
"build": "npx tsc -p tsconfig.json --skipLibCheck",
"lint": "eslint --ext ts,tsx src/**/*.ts",
"precommit": "yarn test && yarn lint && tsc",
"validate-commit": "lint-staged",
"commit": "npx git-cz",
"start:prod": "node ./dist",
"start": "nodemon"
},
"devDependencies": {
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"eslint": "^8.56.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}