-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
53 lines (53 loc) · 1.37 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
{
"name": "@mapbox/mapnik-omnivore",
"version": "10.0.0",
"description": "Node module that returns metadata of spatial files.",
"main": "index.js",
"keywords": [
"mapbox",
"mapnik",
"geodata"
],
"dependencies": {
"@mapbox/mapbox-file-sniff": "~1.0.0",
"@mapbox/sphericalmercator": "~1.0.5",
"gdal": "~0.9.3",
"mapnik": "4.x || 3.x",
"queue-async": "~1.2.0",
"srs": "~1.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/mapbox/mapnik-omnivore"
},
"devDependencies": {
"coveralls": "^3.0.2",
"nyc": "^13.3.0",
"eslint": "^5.13.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"mapnik-test-data": "https://mapbox-npm.s3.amazonaws.com/package/mapnik-test-data-2.0.5-c84800ed20a6a9bc2143dd11b1b2a3190b9ae698.tgz",
"tape": "^4.10.1"
},
"scripts": {
"test": "eslint index.js test lib && tape test/*.js",
"coverage": "nyc npm test && nyc report --reporter=text-lcov | coveralls"
},
"bin": {
"digest": "bin/digest"
},
"jshintConfig": {
"node": true,
"globalstrict": false,
"undef": true,
"unused": true,
"noarg": true
},
"jscsConfig": {
"preset": "airbnb",
"requireCamelCaseOrUpperCaseIdentifiers": null,
"disallowMultipleVarDecl": true,
"requireMultipleVarDecl": null
},
"author": "Carol B. Hansen"
}