UNPKG

946 BJSONView Raw
1{
2 "name": "jpeg-autorotate",
3 "version": "3.0.1",
4 "description": "Rotates JPEG images based on EXIF orientation",
5 "author": "Johan Satgé",
6 "bin": {
7 "jpeg-autorotate": "./src/cli.js"
8 },
9 "scripts": {
10 "test": "eslint . && mocha test/test.js"
11 },
12 "main": "src/main.js",
13 "repository": {
14 "type": "git",
15 "url": "https://github.com/johansatge/jpeg-autorotate"
16 },
17 "bugs": {
18 "url": "https://github.com/johansatge/jpeg-autorotate/issues"
19 },
20 "keywords": [
21 "jpeg",
22 "rotate",
23 "autorotate",
24 "orientation",
25 "exif",
26 "thumbnail",
27 "cli"
28 ],
29 "dependencies": {
30 "async": "^2.5.0",
31 "colors": "^1.1.2",
32 "glob": "^7.1.2",
33 "jpeg-js": "^0.3.3",
34 "piexifjs": "^1.0.3",
35 "yargs": "^8.0.2"
36 },
37 "devDependencies": {
38 "chai": "^4.1.0",
39 "eslint": "^4.3.0",
40 "mocha": "^3.4.2"
41 },
42 "engines" : {
43 "node" : ">=4"
44 },
45 "preferGlobal": true,
46 "license": "MIT"
47}