-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathpackage.json
57 lines (57 loc) · 1.36 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
{
"name": "@ngageoint/mage.nga-msi",
"version": "1.0.5",
"description": "The NGA-MSI package is a MAGE server plugin that provides feeds from National Geospatial-Intelligence Agency's Maritime Safety Information API.",
"main": "lib/index.js",
"files": [
"lib",
"icons",
"!**/*.test.*"
],
"directories": {
"test": "test"
},
"scripts": {
"build:tsc": "tsc -b src",
"build": "npm-run-all build:tsc",
"test:run": "jest lib",
"test": "npm-run-all build test:run",
"clean": "rm -rf lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ngageoint/mage-server.git"
},
"keywords": [
"mage",
"plugin",
"feeds",
"nga",
"maritime",
"safety",
"api"
],
"author": "National Geospatial-Intelligence Agency",
"license": "MIT",
"bugs": {
"url": "https://github.com/ngageoint/mage-server/issues"
},
"homepage": "https://github.com/ngageoint/mage-server#readme",
"dependencies": {
"axios": "^0.27.2"
},
"devDependencies": {
"@types/geojson": "^7946.0.7",
"@types/jest": "^26.0.3",
"@types/json-schema": "^7.0.15",
"cpy-cli": "^3.1.1",
"jest": "^26.1.0",
"nock": "^12.0.3",
"npm-run-all": "^4.1.5",
"ts-jest": "^26.1.1",
"typescript": "^4.6.3"
},
"peerDependencies": {
"@ngageoint/mage.service": "^6.2.3 || ~6.3.0-beta"
}
}