forked from MikeKovarik/exifr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 3.09 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
{
"name": "exifr",
"version": "7.1.3",
"description": "📷 The fastest and most versatile JavaScript EXIF reading library.",
"author": "Mike Kovarik",
"license": "MIT",
"keywords": [
"exif",
"jpg",
"jpeg",
"png",
"heif",
"heic",
"avif",
"tiff",
"xmp",
"gps",
"icc",
"iptc",
"jfif",
"metadata",
"orientation",
"makernote"
],
"homepage": "https://mutiny.cz/exifr/",
"bugs": "https://github.com/MikeKovarik/exifr/issues",
"repository": {
"type": "git",
"url": "https://github.com/MikeKovarik/exifr.git"
},
"main": "./dist/full.umd.js",
"module": "./dist/full.esm.mjs",
"types": "index.d.ts",
"scripts": {
"test": "mocha \"test/**/*.spec.mjs\" --recursive --exclude test/bundle-mini.spec.mjs --exclude test/bundle-lite.spec.mjs --exclude test/bundle-full.spec.mjs",
"test-bundles": "mocha test/bundle-mini.spec.mjs && mocha test/bundle-lite.spec.mjs && mocha test/bundle-full.spec.mjs",
"test-full": "mocha test/bundle-full.spec.mjs",
"test-lite": "mocha test/bundle-lite.spec.mjs",
"test-mini": "mocha test/bundle-mini.spec.mjs",
"coverage": "c8 npm test",
"dev": "rollup -c rollup.config.js -w",
"build-mini": "rollup -c rollup.config.js mini",
"build-lite": "rollup -c rollup.config.js lite",
"build-full": "rollup -c rollup.config.js full",
"build": "rollup -c rollup.config.js",
"prerelease": "npm run build"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-arrow-functions": "^7.8.3",
"@babel/plugin-transform-block-scoping": "^7.8.3",
"@babel/plugin-transform-classes": "^7.8.6",
"@babel/plugin-transform-computed-properties": "^7.8.3",
"@babel/plugin-transform-destructuring": "^7.8.3",
"@babel/plugin-transform-duplicate-keys": "^7.8.3",
"@babel/plugin-transform-function-name": "^7.8.3",
"@babel/plugin-transform-literals": "^7.8.3",
"@babel/plugin-transform-parameters": "^7.8.7",
"@babel/plugin-transform-shorthand-properties": "^7.8.3",
"@babel/plugin-transform-spread": "^7.8.3",
"@babel/plugin-transform-template-literals": "^7.8.3",
"@babel/preset-env": "^7.6.3",
"aurelia-script": "^1.5.2",
"babel-plugin-transform-async-to-promises": "^0.8.15",
"babel-plugin-transform-for-of-without-iterator": "^1.0.3",
"c8": "^7.0.1",
"chai": "^4.3.3",
"coveralls": "^3.0.7",
"decorate": "^1.0.0",
"express": "^4.17.1",
"mocha": "^8.3.0",
"rollup": "^2.40.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-notify": "^1.0.1",
"rollup-plugin-terser": "^7.0.2"
},
"c8": {
"exclude": [
"src/file-readers/BlobReader.js",
"src/file-readers/UrlFetcher.js",
"src/util/debug.js",
"benchmark/**.*",
"debug/**.*",
"examples/**.*",
"dist/**.*",
"test/**.*"
],
"reporter": [
"html",
"text",
"text-summary"
]
},
"dependencies": {}
}