forked from photostructure/exiftool-vendored.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 3.4 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
{
"name": "exiftool-vendored",
"version": "21.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": {
"ci": "yarn install --frozen-lockfile",
"clean": "rimraf lib dist coverage .nyc_output",
"precompile": "yarn clean",
"compile": "tsc",
"compile:watch": "yarn precompile && tsc --watch",
"premktags": "yarn compile",
"mktags": "node dist/update/mktags.js",
"lint": "yarn eslint src --ext .ts",
"organize-imports": "find src -maxdepth 3 -name \\*.ts | grep -v node_modules | xargs --verbose --max-args=64 --max-procs=8 npx organize-imports-cli",
"preprettier": "yarn organize-imports",
"prettier": "prettier --write src/*.ts src/**/*.ts",
"pretest": "run-p lint 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": "yarn serve docs",
"docs": "run-s docs:*"
},
"repository": {
"type": "git",
"url": "https://github.com/photostructure/exiftool-vendored.js.git"
},
"release-it": {
"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.4",
"@types/chai-as-promised": "^7.1.5",
"@types/chai-subset": "^1.3.3",
"@types/fs-extra": "^11.0.1",
"@types/globule": "^1.1.5",
"@types/he": "^1.2.0",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.19",
"@types/progress": "^2.0.5",
"@types/tmp": "^0.2.3",
"@types/xmldom": "^0.1.31",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"@xmldom/xmldom": "^0.8.6",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"chai-subset": "^1.6.0",
"eslint": "^8.33.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"extract-zip": "^2.0.1",
"fs-extra": "^11.1.0",
"geo-tz": "^7.0.6",
"globule": "^1.3.4",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"organize-imports-cli": "^0.10.0",
"prettier": "^2.8.3",
"progress": "^2.0.3",
"rimraf": "^4.1.2",
"serve": "^14.2.0",
"source-map-support": "^0.5.21",
"tmp": "^0.2.1",
"typedoc": "^0.23.24",
"typescript": "~4.9.5",
"xpath": "^0.0.32"
},
"dependencies-note": "@types/luxon is not a devDependency, as our exported TypeScript typings reference luxon types. See <https://github.com/photostructure/exiftool-vendored.js/pull/108>",
"dependencies": {
"@photostructure/tz-lookup": "^7.0.0",
"@types/luxon": "^3.2.0",
"batch-cluster": "^12.0.0",
"he": "^1.2.0",
"luxon": "^3.2.1"
},
"optionalDependencies": {
"exiftool-vendored.exe": "12.55.0",
"exiftool-vendored.pl": "12.55.0"
}
}