-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.45 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.45 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
59
60
61
62
63
64
65
66
67
{
"name": "@ngageoint/mage.image.service",
"version": "1.1.0-beta.1",
"description": "Orient images attached to Mage observations according to EXIF meta-data and generate configurable size thumbnails.",
"main": "lib/index.js",
"files": [
"lib/",
"src/"
],
"scripts": {
"build": "tsc",
"test": "npm-run-all build test:run",
"test:run": "jasmine",
"clean": "rimraf ./lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ngageoint/mage-server.git"
},
"keywords": [
"mage",
"plugin",
"image",
"nga",
"geospatial",
"situational",
"awareness"
],
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ngageoint/mage-server/issues"
},
"homepage": "https://github.com/ngageoint/mage-server#readme",
"dependencies": {
"sharp": "^0.33.2"
},
"peerDependencies": {
"@ngageoint/mage.service": "6.3.0-beta.8",
"express": "~4.21.2",
"mongoose": "^6.13.0"
},
"optionalDependencies": {
"fsevents": "^2.3.3"
},
"os": [
"darwin",
"linux"
],
"cpu": [
"x64",
"arm64"
],
"devDependencies": {
"@types/bson": "^4.0.2",
"@types/express": "~4.17.17",
"@types/jasmine": "^3.10.3",
"@types/lodash": "^4.14.182",
"@types/sharp": "^0.30.4",
"jasmine": "^3.10.0",
"jimp": "^0.22.10",
"lodash": "^4.17.21",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.5",
"typescript": "^4.9.5"
}
}