-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 1.04 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
{
"name": "exiftool-vendored.pl",
"version": "13.0.1",
"description": "Vendored perl ExifTool for Node.js",
"main": "./index.js",
"homepage": "https://github.com/photostructure/exiftool-vendored.pl#readme",
"bugs": {
"url": "https://github.com/photostructure/exiftool-vendored/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:photostructure/exiftool-vendored.pl.git"
},
"os": [
"!win32"
],
"files": [
"bin",
"index.js"
],
"keywords": [
"ExifTool",
"EXIF"
],
"author": "Matthew McEachen <[email protected]>",
"license": "MIT",
"scripts": {
"prettier": "prettier --write test/*.js",
"test": "mocha",
"update": "ncu --upgrade --install always && bash -c ./update.sh"
},
"release-it": {
"hooks": {
"before:init": [
"yarn install",
"yarn test"
]
},
"github": {
"release": true
}
},
"devDependencies": {
"mocha": "^10.8.0",
"npm-check-updates": "^17.1.9",
"prettier": "^3.3.3"
}
}