UNPKG

980 BJSONView Raw
1{
2 "name": "jpeg-autorotate",
3 "version": "4.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": ["jpeg", "rotate", "autorotate", "orientation", "exif", "thumbnail", "cli"],
21 "dependencies": {
22 "async": "^2.6.1",
23 "colors": "^1.3.0",
24 "glob": "^7.1.2",
25 "jpeg-js": "^0.3.4",
26 "piexifjs": "^1.0.4",
27 "yargs": "^12.0.1"
28 },
29 "devDependencies": {
30 "chai": "^4.1.2",
31 "eslint": "^5.1.0",
32 "eslint-plugin-prettier": "^2.6.2",
33 "mocha": "^5.2.0",
34 "prettier": "^1.13.7"
35 },
36 "engines": {
37 "node": ">=6"
38 },
39 "preferGlobal": true,
40 "license": "MIT"
41}