-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.07 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
{
"name": "exiftool-wrapper",
"version": "1.0.3",
"description": "JavaScript-Wrapper for ExifTool by Phil Harvey.",
"main": "lib/exiftool-wrapper.js",
"engine": {
"node": ">=4.0.0"
},
"directories": {
"example": "examples",
"test": "test"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"chai": "^4.2.0",
"chai-exclude": "^2.0.1",
"mocha": "^6.1.4"
},
"scripts": {
"babel": "babel -d lib/ src/",
"babel:w": "babel -w -d lib/ src/",
"prepublish": "npm run babel",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RoyalBingBong/exiftool-wrapper.git"
},
"keywords": [
"exif",
"exiftool",
"metadata",
"image",
"video",
"media",
"wrapper"
],
"author": "David Koch <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/RoyalBingBong/exiftool-wrapper/issues"
},
"homepage": "https://github.com/RoyalBingBong/exiftool-wrapper#readme"
}