-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 926 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 926 Bytes
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
{
"name": "@koopjs/output-ogcapi-features",
"version": "0.2.2",
"description": "Experimental KoopJS output plugin for OGC API - Feature",
"main": "src/index.js",
"scripts": {
"test": "mocha 'test/**/*.test.js'",
"start": "koop serve --data test/data.geojson"
},
"dependencies": {
"@turf/bbox": "^6.0.1",
"config": "^3.2.4",
"lodash": "^4.17.15",
"winnow": "^1.16.11"
},
"devDependencies": {
"@koopjs/cli": "^0.5.0",
"chai": "^4.2.0",
"express": "^4.17.1",
"husky": "^3.0.9",
"mocha": "^6.2.2",
"prettier": "^1.18.2",
"pretty-quick": "^2.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/koopjs/output-ogcapi-features.git"
},
"license": "Apache-2.0",
"keywords": [
"koop",
"plugin",
"output",
"ogcapi",
"features"
],
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}