forked from xoeye/gps-metadata-remover
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.93 KB
/
package.json
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@xoi/gps-metadata-remover",
"version": "1.1.0",
"description": "Removes GPS metadata from images and videos",
"repository": {
"type": "git",
"url": "ssh://[email protected]:xoeye/gps-metadata-remover.git"
},
"main": "lib/index.js",
"author": "[email protected]",
"license": "apache",
"homepage": "https://github.com/xoeye/gps-metadata-remover",
"bugs": {
"url": "https://github.com/xoeye/gps-metadata-remover/issues"
},
"files": [
"lib"
],
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.10.4",
"Base64": "^1.1.0",
"debug": "^4.1.1",
"jdataview": "^2.5.0"
},
"devDependencies": {
"@babel/cli": "^7.11.0",
"@babel/core": "^7.11.0",
"@babel/plugin-transform-modules-commonjs": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@babel/preset-flow": "^7.11.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"flow-bin": "^0.109.0",
"flow-copy-source": "^2.0.9",
"ffprobe": "^1.1.0",
"ffprobe-static": "^3.0.0",
"gm": "^1.23.1",
"hasha": "^5.2.0",
"is-corrupted-jpeg": "^1.0.2",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"prettier": "^1.18.2",
"prettier-eslint": "^9.0.0",
"prettier-eslint-cli": "^5.0.0",
"uuid": "^3.3.2"
},
"scripts": {
"build": "if [ -d lib ]; then rm lib/*; fi; yarn run babel src/ -d lib/ && flow-copy-source src lib",
"prepublish": "yarn run build",
"test": "jest",
"test-multiple": "for i in {1..10}; do jest --runInBand --silent || (echo 'Failed after $i attempts' && break); done",
"remove-metadata-batch": "node scripts/batchRemoveMetadata.js",
"test:jenkins": "echo 'No Tests Implemented'"
},
"keywords": [
"exif",
"gps",
"metadata",
"jpeg",
"jpg",
"mp4",
"mov",
"png",
"tiff",
"erase",
"delete",
"remove",
"js",
"images",
"privacy",
"web",
"mobile",
"geolocation",
"location"
]
}