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