UNPKG

1.18 kBJSONView Raw
1{
2 "name": "jpeg-autorotate",
3 "version": "7.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 "checkstyle": "eslint .",
11 "test": "mocha test/*.spec.js"
12 },
13 "files": [
14 "src/**/*.js",
15 "package.json",
16 "readme.md",
17 "license.md"
18 ],
19 "main": "src/main.js",
20 "repository": {
21 "type": "git",
22 "url": "https://github.com/johansatge/jpeg-autorotate"
23 },
24 "bugs": {
25 "url": "https://github.com/johansatge/jpeg-autorotate/issues"
26 },
27 "keywords": [
28 "jpeg",
29 "rotate",
30 "autorotate",
31 "orientation",
32 "exif",
33 "thumbnail",
34 "cli"
35 ],
36 "dependencies": {
37 "colors": "^1.4.0",
38 "glob": "^7.1.6",
39 "jpeg-js": "^0.4.2",
40 "piexifjs": "^1.0.6"
41 },
42 "devDependencies": {
43 "chai": "^4.1.2",
44 "eslint": "^7.9.0",
45 "eslint-plugin-prettier": "^3.1.4",
46 "fs-extra": "^9.0.1",
47 "mocha": "^8.1.3",
48 "pixelmatch": "^5.2.1",
49 "pngjs": "^5.0.0",
50 "prettier": "^2.1.2",
51 "yargs": "^16.0.3"
52 },
53 "engines": {
54 "node": ">=10"
55 },
56 "preferGlobal": true,
57 "license": "MIT"
58}