UNPKG

1.24 kBJSONView Raw
1{
2 "name": "jpeg-autorotate",
3 "version": "8.0.1",
4 "description": "Rotate JPEG images based on EXIF orientation",
5 "author": "Johan Satgé",
6 "bin": {
7 "jpeg-autorotate": "./src/cli.js"
8 },
9 "scripts": {
10 "checkstyle": "eslint .",
11 "test": "nyc --reporter=text mocha test/*.spec.js && rm -r .nyc_output",
12 "test-ci": "nyc --reporter=lcov mocha test/*.spec.js && codecov"
13 },
14 "files": [
15 "src/**/*.js",
16 "package.json",
17 "readme.md",
18 "license.md"
19 ],
20 "main": "src/main.js",
21 "repository": {
22 "type": "git",
23 "url": "https://github.com/johansatge/jpeg-autorotate"
24 },
25 "bugs": {
26 "url": "https://github.com/johansatge/jpeg-autorotate/issues"
27 },
28 "keywords": [
29 "jpeg",
30 "rotate",
31 "autorotate",
32 "orientation",
33 "exif",
34 "thumbnail",
35 "cli"
36 ],
37 "dependencies": {
38 "glob": "^7.2.0",
39 "jpeg-js": "^0.4.3",
40 "piexifjs": "^1.0.6",
41 "yargs-parser": "^20.2.9"
42 },
43 "devDependencies": {
44 "chai": "^4.3.4",
45 "codecov": "^3.8.3",
46 "eslint": "^8.2.0",
47 "eslint-plugin-prettier": "^4.0.0",
48 "mocha": "^9.1.3",
49 "nyc": "^15.1.0",
50 "prettier": "^2.4.1"
51 },
52 "engines": {
53 "node": ">=12"
54 },
55 "preferGlobal": true,
56 "license": "MIT"
57}