forked from koopjs/winnow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 1.85 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
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "winnow",
"version": "2.3.1",
"description": "Apply sql-like filters to GeoJSON",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "standard && tape 'test/**/*.js' | tap-spec",
"fix": "standard --fix",
"benchmark": "node benchmark/index.js",
"benchmark:ci": "node benchmark/index.js | tee benchmark-result.txt"
},
"repository": {
"type": "git",
"url": "git+https://github.com/koopjs/winnow.git"
},
"keywords": [
"geojson",
"filter",
"stream",
"sql",
"geoservices",
"query"
],
"contributors": [
{
"name": "Rich Gwozdz",
"email": "rgwozdz@esri.com"
},
{
"name": "Daniel Fenton"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/koopjs/winnow/issues"
},
"homepage": "https://github.com/koopjs/winnow#readme",
"dependencies": {
"@esri/proj-codes": "^2.6.0",
"@hapi/joi": "^17.1.1",
"@terraformer/spatial": "^2.0.7",
"@turf/bbox-polygon": "^6.0.1",
"@turf/centroid": "^6.0.0",
"@types/geojson": "^7946.0.7",
"alasql": "^0.7.0",
"classybrew": "0.0.3",
"flora-sql-parser": "^0.9.3",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"ngeohash": "^0.6.3",
"proj4": "^2.6.2",
"simple-statistics": "^7.0.0",
"string-hash": "^1.1.3",
"terraformer-arcgis-parser": "^1.1.0",
"wkt-parser": "^1.2.2"
},
"devDependencies": {
"benchmark": "^2.1.4",
"fs-extra": "^9.0.1",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"proxyquire": "^2.1.3",
"sinon": "^9.0.3",
"standard": "^14.3.0",
"tap-spec": "^5.0.0",
"tape": "^5.0.0"
},
"optionalDependencies": {
"farmhash": "^3.1.0"
},
"lint-staged": {
"*.js": "npm run fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"types": "index.d.ts"
}