-
-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
125 lines (125 loc) · 3.47 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "exiftool-vendored",
"version": "29.0.0",
"description": "Efficient, cross-platform access to ExifTool",
"main": "./dist/ExifTool.js",
"types": "./dist/ExifTool.d.ts",
"homepage": "https://photostructure.github.io/exiftool-vendored.js/",
"bugs": {
"url": "https://github.com/photostructure/exiftool-vendored.js/issues"
},
"scripts": {
"u": "npm-check-updates --upgrade --install always",
"clean": "rimraf lib dist coverage .nyc_output",
"precompile": "npm run clean",
"compile": "tsc",
"compile:watch": "npm run precompile && tsc --watch",
"premktags": "npm run compile",
"mktags": "node dist/update/mktags.js",
"prelint": "npm run compile",
"prepare": "npm run compile",
"lint": "eslint src --ext .ts",
"prettier": "prettier --write src/*.ts src/**/*.ts **/*.yml **/*.json **/*.md",
"pretest": "npm run compile",
"test": "mocha 'dist/*.spec.js'",
"docs:1": "typedoc --options .typedoc.js",
"docs:3": "cp .serve.json docs/serve.json",
"docs:4": "touch docs/.nojekyll",
"docs:5": "serve docs",
"docs": "run-s docs:*"
},
"repository": {
"type": "git",
"url": "https://github.com/photostructure/exiftool-vendored.js.git"
},
"release-it": {
"hooks": {
"before:init": "npm run lint"
},
"src": {
"tagName": "v%s",
"commitArgs": "-S",
"tagArgs": "-S"
},
"github": {
"release": true
}
},
"keywords": [
"ExifTool",
"EXIF",
"JPEG",
"ICMP",
"TIFF",
"RAW",
"ARW",
"DNG",
"NEF",
"ORF",
"XMP",
"CR2",
"CR3",
"MakerNote",
"Metadata"
],
"author": "Matthew McEachen <[email protected]>",
"license": "MIT",
"nyc": {
"exclude": [
"**/*.spec.?s",
"**/update/**"
]
},
"devDependencies": {
"@types/chai": "^4.3.16",
"@types/chai-as-promised": "^8.0.1",
"@types/chai-subset": "^1.3.5",
"@types/deep-eql": "^4.0.2",
"@types/globule": "^1.1.9",
"@types/he": "^1.2.3",
"@types/mocha": "^10.0.9",
"@types/node": "^22.8.7",
"@types/progress": "^2.0.7",
"@types/tmp": "^0.2.6",
"@types/xmldom": "^0.1.34",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"@xmldom/xmldom": "^0.9.5",
"chai": "^4.3.10",
"chai-as-promised": "^7.1.2",
"deep-eql": "^4.1.4",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-redos": "^4.4.5",
"eslint-plugin-regexp": "^2.6.0",
"extract-zip": "^2.0.1",
"geo-tz": "^8.1.2",
"globule": "^1.3.4",
"mocha": "^10.8.2",
"npm-check-updates": "^17.1.10",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
"progress": "^2.0.3",
"rimraf": "^5.0.9",
"serve": "^14.2.4",
"source-map-support": "^0.5.21",
"tmp": "^0.2.3",
"typedoc": "^0.26.11",
"typescript": "^5.6.3",
"xpath": "^0.0.34"
},
"dependencies-note": "@types/luxon is a proper dependency, not devDependency, as our exported TypeScript typings reference luxon types. See <https://github.com/photostructure/exiftool-vendored.js/pull/108>",
"dependencies": {
"@photostructure/tz-lookup": "^11.0.0",
"@types/luxon": "^3.4.2",
"batch-cluster": "^13.0.0",
"he": "^1.2.0",
"luxon": "^3.5.0"
},
"optionalDependencies": {
"exiftool-vendored.exe": "13.0.0",
"exiftool-vendored.pl": "13.0.1"
}
}