forked from naturalatlas/node-gdal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.72 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
{
"name": "gdal",
"version": "0.9.2",
"description": "Bindings to GDAL (Geospatial Data Abstraction Library)",
"license": "Apache-2.0",
"url": "http://github.com/naturalatlas/node-gdal",
"main": "./lib/gdal.js",
"keywords": [
"gdal",
"libgdal",
"gis",
"geo",
"geos",
"geography",
"geospatial",
"raster",
"vector",
"gtiff",
"geojson",
"mapping"
],
"binary": {
"module_name": "gdal",
"module_path": "./lib/binding/{node_abi}-{platform}-{arch}",
"remote_path": "./{module_name}/v{version}/{toolset}/",
"host": "https://mapbox-node-binary.s3.amazonaws.com",
"package_name": "{node_abi}-{platform}-{arch}.tar.gz"
},
"repository": {
"type": "git",
"url": "git://github.com/naturalatlas/node-gdal.git"
},
"author": {
"name": "Brandon Reavis",
"url": "https://github.com/brandonreavis",
"email": "[email protected]"
},
"scripts": {
"test": "mocha test -R tap --timeout 600000 --no-colors -gc --require ./test/_common.js",
"test-syntax": "eslint lib test --fix",
"preinstall":"npm install node-pre-gyp",
"install": "node-pre-gyp install --fallback-to-build",
"postpublish": "npm run publish-yuidoc",
"yuidoc": "yuidoc --extension .js,.cpp,.hpp",
"publish-yuidoc": "npm run yuidoc && node ./scripts/publish-docs.js"
},
"dependencies": {
"nan": "~2.3.3",
"node-pre-gyp": "~0.6.27"
},
"devDependencies": {
"aws-sdk": "~2.0.25",
"chai": "^3.4.1",
"eslint": "^1.10.1",
"eslint-config-naturalatlas": "latest",
"gh-pages": "~0.2.0",
"mocha": "^2.3.4",
"yuidoc-lucid-theme": "~0.1.1",
"yuidocjs": "~0.3.50"
},
"engines": {
"node": ">= 0.8.0"
},
"engineStrict": true
}