UNPKG

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