-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
36 lines (36 loc) · 895 Bytes
/
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
{
"name": "tileify-ags-proxy",
"version": "2.0.0",
"description": "A proxy for fetching slippy map tiles from an uncached ArcGIS Server map",
"main": "index.js",
"scripts": {
"lint": "./node_modules/.bin/eslint ./index.js",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git://github.com/JasonSanford/tileify-ags-proxy.git"
},
"keywords": [
"arcgis",
"server",
"tiles",
"proxy"
],
"author": "Jason Sanford",
"license": "MIT",
"bugs": {
"url": "https://github.com/JasonSanford/tileify-ags-proxy/issues"
},
"homepage": "https://github.com/JasonSanford/tileify-ags-proxy",
"dependencies": {
"tileify-ags": "2.1.0",
"express": "~4.16.3",
"request": "~2.88.0"
},
"devDependencies": {
"eslint": "^5.5.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0"
}
}