forked from sharkinsspatial/xyz2tpk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.41 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
{
"name": "xyz2tpk",
"version": "1.0.0",
"description": "Convert tiles from an HTTP x,y,z tile endpoint into the ESRI .tpk format.",
"main": "dist/xyz2tpk.js",
"scripts": {
"test": "babel-tape-runner \"test/*.test.js\" ",
"watch": "babel -w src -d dist",
"build": "babel src -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sharkinsspatial/xyz2tpk.git"
},
"author": "Sean Harkins <[email protected]> (https://github.com/sharkinsspatial)",
"license": "ISC",
"bugs": {
"url": "https://github.com/sharkinsspatial/xyz2tpk/issues"
},
"homepage": "https://github.com/sharkinsspatial/xyz2tpk#readme",
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-tape-runner": "^2.0.1",
"eslint": "^3.8.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.4.1",
"mkdirp": "^0.5.1",
"rimraf": "^2.5.4",
"tape": "^4.6.2"
},
"dependencies": {
"archiver": "^1.1.0",
"fs-extra": "^0.30.0",
"jsonfile": "^2.4.0",
"mkdirp": "^0.5.1",
"sphericalmercator": "^1.0.5",
"tilejson": "^1.0.2",
"tilelive": "^5.12.2",
"tilelive-arcgis": "sharkinsspatial/tilelive-arcgis",
"tilelive-http": "^0.11.3",
"tmp": "0.0.29",
"xmldom": "^0.1.22"
}
}