-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
31 lines (31 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
{
"name": "exiftool.js",
"version": "0.3.3",
"description": "A pure javascript implementation of Phil Harvey's excellent exiftool. This extends work started by Jacob Seidelin and aims to support parsing of all the tags that exiftool is capable of.",
"main": "exiftool.js",
"devDependencies": {
"generate-changelog": "^1.5.0",
"mocha": "2.2.1"
},
"scripts": {
"test": "mocha",
"release:major": "generate-changelog -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && yarn version --new-version major && git push origin && git push origin --tags",
"release:minor": "generate-changelog -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && yarn version --new-version minor && git push origin && git push origin --tags",
"release:patch": "generate-changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && yarn version --new-version patch && git push origin && git push origin --tags"
},
"repository": {
"type": "git",
"url": "https://github.com/mattburns/exiftool.js.git"
},
"keywords": [
"exiftool",
"jpeg",
"metadata"
],
"author": "Matt Burns <[email protected]> (http://www.mattburns.co.uk/)",
"license": "MPL",
"bugs": {
"url": "https://github.com/mattburns/exiftool.js/issues"
},
"homepage": "https://github.com/mattburns/exiftool.js"
}