-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
56 lines (56 loc) · 1.42 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
{
"name": "terriajs-server",
"version": "4.0.1",
"description": "NodeJS server for TerriaJS, consisting of a CORS proxy, proj4 CRS lookup service, and express static server.",
"engineStrict": true,
"engines": {
"node": ">=12.0.0"
},
"resolutions": {
"underscore": "^1.12.1"
},
"main": "lib/app.js",
"scripts": {
"test": "jasmine",
"start": "node lib/app.js",
"postpublish": "bash -c \"git tag -a ${npm_package_version} -m \"${npm_package_version}\" && git push origin ${npm_package_version}\""
},
"bin": {
"terriajs-server": "terriajs-server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/TerriaJS/TerriaJS-Server"
},
"keywords": [
"terriajs",
"National Map"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/TerriaJS/TerriaJS-Server/issues"
},
"homepage": "https://github.com/TerriaJS/TerriaJS-Server",
"dependencies": {
"aws-sdk": "^2.1336.0",
"base-x": "^3.0.5",
"basic-auth": "^2.0.1",
"body-parser": "^1.15.0",
"compression": "^1.6.0",
"cors": "^2.7.1",
"express": "^4.8.0",
"express-brute": "^1.0.1",
"json5": "^2.2.3",
"morgan": "^1.7.0",
"proj4": "^2.3.12",
"proj4js-defs": "0.0.1",
"range_check": "^1.4.0",
"request": "^2.88.2",
"request-promise": "^4.0.1",
"yargs": "^13.2.4"
},
"devDependencies": {
"jasmine": "^3.4.0",
"supertest": "^4.0.0"
}
}