UNPKG

1.09 kBJSONView Raw
1{
2 "name": "jpeg-autorotate",
3 "version": "5.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 "checkstyle": "eslint .",
11 "test": "mocha test/*.spec.js"
12 },
13 "main": "src/main.js",
14 "repository": {
15 "type": "git",
16 "url": "https://github.com/johansatge/jpeg-autorotate"
17 },
18 "bugs": {
19 "url": "https://github.com/johansatge/jpeg-autorotate/issues"
20 },
21 "keywords": [
22 "jpeg",
23 "rotate",
24 "autorotate",
25 "orientation",
26 "exif",
27 "thumbnail",
28 "cli"
29 ],
30 "dependencies": {
31 "colors": "^1.3.3",
32 "glob": "^7.1.2",
33 "jpeg-js": "^0.3.4",
34 "piexifjs": "^1.0.4",
35 "yargs": "^13.2.1"
36 },
37 "devDependencies": {
38 "chai": "^4.1.2",
39 "eslint": "^5.15.0",
40 "eslint-plugin-prettier": "^3.0.1",
41 "fs-extra": "^7.0.1",
42 "mocha": "^6.0.2",
43 "pixelmatch": "^4.0.2",
44 "pngjs": "^3.3.3",
45 "prettier": "^1.16.4"
46 },
47 "engines": {
48 "node": ">=8"
49 },
50 "preferGlobal": true,
51 "license": "MIT"
52}