UNPKG

1.04 kBJSONView Raw
1{
2 "name": "geojsonhint",
3 "description": "validate and sanity-check geojson files",
4 "version": "2.0.0",
5 "author": "Tom MacWright",
6 "bin": {
7 "geojsonhint": "./bin/geojsonhint"
8 },
9 "bugs": {
10 "url": "https://github.com/mapbox/geojsonhint/issues"
11 },
12 "files": [
13 "geojsonhint.js",
14 "bin",
15 "lib"
16 ],
17 "dependencies": {
18 "concat-stream": "~1.5.1",
19 "jsonlint-lines": "1.7.1",
20 "minimist": "1.2.0",
21 "vfile": "2.0.0",
22 "vfile-reporter": "3.0.0"
23 },
24 "devDependencies": {
25 "benchmark": "^2.1.0",
26 "browserify": "13.1.0",
27 "eslint": "^3.0.1",
28 "fuzzer": "~0.2.0",
29 "glob": "~7.0.5",
30 "tap": "7.0.0"
31 },
32 "directories": {
33 "test": "test"
34 },
35 "keywords": [
36 "geojson",
37 "hint"
38 ],
39 "license": "ISC",
40 "main": "lib/index.js",
41 "repository": {
42 "type": "git",
43 "url": "git://github.com/mapbox/geojsonhint.git"
44 },
45 "scripts": {
46 "test": "eslint . && tap test/*.js --coverage",
47 "prepublish": "browserify . --standalone geojsonhint > geojsonhint.js"
48 }
49}