-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 1.65 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
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "geomangler",
"version": "1.4.1",
"description": "Geomangler is a utility library and server to process and transform spatial data",
"keywords": [
"mapping",
"openlayers",
"geodata",
"manglers",
"geojson",
"topojson"
],
"main": "geomangler.js",
"engines": {
"node": ">=6.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/afogelberg/geomangler.git"
},
"scripts": {
"build-ol": "babel node_modules/ol --out-dir build/vendor/ol --ignore ol/node_modules",
"preinstall": "npm install --ignore-scripts",
"postinstall": "npm run build-ol"
},
"babel": {
"presets": [
"es2015-node6"
],
"plugins": [
"add-module-exports"
]
},
"_moduleAliases": {
"@ol": "build/vendor/ol"
},
"author": "Andreas Fogelberg",
"license": "MIT",
"dependencies": {
"babel-polyfill": "^6.26.0",
"bluebird": "^3.5.0",
"csvjson": "^4.3.4",
"express": "^4.16.2",
"jsdom": "^11.5.1",
"json2csv": "^3.11.2",
"jsonfile": "^2.4.0",
"knex": "^0.14.4",
"module-alias": "^2.0.6",
"mssql": "^4.1.0",
"ol": "^4.4.1",
"pg": "^7.4.1",
"proj4": "^2.3.15",
"request": "^2.75.0",
"request-promise": "^4.2.1",
"source-map-support": "^0.4.18",
"topojson": "^2.0.0",
"xml2js": "^0.4.17",
"xmlbuilder": "^9.0.4",
"xmlserializer": "^0.6.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015-node6": "^0.4.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.10.0",
"tape": "^4.9.0"
}
}