forked from bwindels/exif-parser
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
48 lines (48 loc) · 1.16 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": "ts-exif-parser",
"version": "0.2.2",
"description": "A typescript library to extract Exif metadata from images, in node and in the browser.",
"author": "Patik Braun, former: Bruno Windels <[email protected]>",
"keywords": [
"exif",
"image",
"jpeg",
"jpg",
"tiff",
"gps"
],
"scripts": {
"build": "rollup --config",
"test": "tsc lib/*.ts test/*.ts && mocha --recursive test"
},
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"browser": "dist/umd/ts-exif-parser.js",
"types": "dist/es/index.d.ts",
"repository": {
"type": "git",
"url": "http://github.com/bpatrik/ts-exif-parser.git"
},
"files": [
"dist/**"
],
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.0",
"@types/assert": "1.5.4",
"@types/mocha": "8.2.2",
"@types/node": "14.14.41",
"@types/sax": "1.2.1",
"assert": "2.0.0",
"mocha": "8.3.2",
"rollup": "^2.67.2",
"ts-node": "9.1.1",
"tslib": "^2.3.1",
"tslint": "5.20.1",
"tslint-consistent-codestyle": "1.16.0",
"typescript": "4.2.4",
"uglify-js": "3.13.4"
},
"dependencies": {
"sax": "1.2.4"
}
}