UNPKG

947 BJSONView Raw
1{
2 "name": "jpeg-autorotate",
3 "version": "3.0.0",
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.1.4",
31 "colors": "^1.1.2",
32 "glob": "^7.1.1",
33 "jpeg-js": "^0.2.0",
34 "piexifjs": "^1.0.0",
35 "yargs": "^6.6.0"
36 },
37 "devDependencies": {
38 "chai": "^3.5.0",
39 "eslint": "^3.15.0",
40 "mocha": "^3.2.0"
41 },
42 "engines" : {
43 "node" : ">=4"
44 },
45 "preferGlobal": true,
46 "license": "MIT"
47}