-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathpackage.json
More file actions
154 lines (154 loc) · 4.77 KB
/
package.json
File metadata and controls
154 lines (154 loc) · 4.77 KB
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
{
"name": "exiftool-vendored",
"version": "35.19.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"
},
"type": "commonjs",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"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",
"postmktags": "npm run fmt",
"prelint": "npm run compile",
"prepare": "npm run compile",
"#lint": "the node.js GitHub Action will run `lint` on one node before running `test` with the matrix",
"lint": "eslint",
"fmt": "prettier --write .",
"pretest": "npm run compile",
"test": "mocha dist/**/*.spec.js",
"docs:build": "typedoc",
"docs:serve": "npm run docs:build && npx serve build/docs",
"docs": "npm run docs:serve",
"ncu": "run-s ncu:*",
"ncu:owned": "ncu --filter 'batch-cluster,exiftool-vendored.exe,exiftool-vendored.pl' -u",
"// ncu:others": "Rejected packages migrated to ESM and we're not ready for that yet",
"ncu:others": "ncu --cooldown 7 --reject 'batch-cluster,exiftool-vendored.exe,exiftool-vendored.pl,@types/chai-as-promised,@types/chai,@types/mocha,chai-as-promised,chai,deep-eql,eslint,mocha' -u",
"update": "run-s ncu:* update:*",
"update:install": "npm install",
"install:pinact": "go install github.com/suzuki-shunsuke/pinact/v3/cmd/pinact@latest",
"update:actions": "pinact run -u --min-age 7",
"precommit": "run-s clean update fmt lint docs:build test",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/photostructure/exiftool-vendored.js.git"
},
"release-it": {
"hooks": {
"before:init": [
"npm ci",
"npm run clean",
"npm run compile"
]
},
"src": {
"tagName": "v%s",
"commitArgs": "--gpg-sign",
"tagArgs": "--sign"
},
"git": {
"requireBranch": "main",
"commitMessage": "Release ${version}",
"tagName": "${version}"
},
"github": {
"release": true
},
"npm": {
"publish": true,
"skipChecks": true
}
},
"# release-it.npm.skipChecks": "Required for OIDC Trusted Publishing - bypasses npm auth checks since OIDC handles authentication automatically. See: https://github.com/release-it/release-it/issues/1244 and https://docs.npmjs.com/trusted-publishers#supported-cicd-providers",
"keywords": [
"ExifTool",
"EXIF",
"JPEG",
"ICMP",
"TIFF",
"RAW",
"ARW",
"DNG",
"NEF",
"ORF",
"XMP",
"CR2",
"CR3",
"MakerNote",
"Metadata"
],
"author": "Matthew McEachen <matthew-exiftoolvendored@photostructure.com>",
"license": "MIT",
"nyc": {
"exclude": [
"**/*.spec.?s",
"**/update/**"
]
},
"devDependencies": {
"@types/chai": "^5.2.3",
"@types/chai-as-promised": "^8.0.2",
"@types/deep-eql": "^4.0.2",
"@types/globule": "^1.1.10",
"@types/he": "^1.2.3",
"@types/mocha": "^10.0.10",
"@types/node": "^25.6.0",
"@types/progress": "^2.0.7",
"@types/source-map-support": "^0.5.10",
"@types/tmp": "^0.2.6",
"@types/xmldom": "^0.1.34",
"@xmldom/xmldom": "^0.9.9",
"chai": "^6.2.2",
"chai-as-promised": "^8.0.2",
"deep-eql": "^5.0.2",
"eslint": "^9.39.2",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-redos": "^4.5.0",
"eslint-plugin-regexp": "^3.1.0",
"extract-zip": "^2.0.1",
"geo-tz": "^8.1.6",
"globals": "^17.5.0",
"globule": "^1.3.4",
"mocha": "^11.7.5",
"npm-check-updates": "^20.0.0",
"npm-run-all2": "8.0.4",
"prettier": "^3.8.3",
"prettier-plugin-organize-imports": "^4.3.0",
"progress": "^2.0.3",
"release-it": "^19.2.4",
"rimraf": "^6.1.3",
"serve": "^14.2.6",
"source-map-support": "^0.5.21",
"tmp": "^0.2.5",
"ts-node": "^10.9.2",
"typedoc": "^0.28.19",
"typescript": "^6.0.3",
"typescript-eslint": "^8.58.1",
"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.5.0",
"@types/luxon": "^3.7.1",
"batch-cluster": "^17.3.1",
"he": "^1.2.0",
"luxon": "^3.7.2"
},
"optionalDependencies": {
"exiftool-vendored.exe": "13.57.0",
"exiftool-vendored.pl": "13.57.0"
}
}