-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
41 lines (41 loc) · 1.14 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
{
"name": "fast-exif",
"version": "2.0.1",
"description": "Fast EXIF extraction without reading whole file into memory.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"exif-reader": "1.2.0"
},
"devDependencies": {
"@jest/globals": "^29.5.0",
"@types/exif-reader": "^1.0.0",
"@types/node": "^18.15.9",
"coveralls": "^3.1.1",
"ts-jest": "^29.0.5",
"typescript": "^5.0.2"
},
"scripts": {
"test": "jest --coverage",
"coveralls": "coveralls < coverage/lcov.info",
"release-major": "npm t && tsc && npm version major && npm publish && git push",
"release-minor": "npm t && tsc && npm version minor && npm publish && git push",
"release-patch": "npm t && tsc && npm version patch && npm publish && git push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/titarenko/fast-exif.git"
},
"keywords": [
"fast",
"exif",
"jpeg",
"jpg"
],
"author": "Constantin Titarenko",
"license": "MIT",
"bugs": {
"url": "https://github.com/titarenko/fast-exif/issues"
},
"homepage": "https://github.com/titarenko/fast-exif#readme"
}