-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
91 lines (91 loc) · 1.83 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
84
85
86
87
88
89
90
91
{
"name": "koop",
"description": "Serve, transform, and query geospatial data on the web",
"version": "5.1.1",
"bugs": {
"url": "https://github.com/koopjs/koop/issues"
},
"contributors": [
{
"name": "Rich Gwozdz",
"email": "[email protected]"
},
{
"name": "Haoliang Yu",
"email": "[email protected]"
},
{
"name": "Daniel Fenton"
},
{
"name": "Chris Helm"
}
],
"dependencies": {
"@hapi/joi": "^17.1.0",
"@koopjs/cache-memory": "^2.0.2",
"@koopjs/logger": "^2.0.6",
"@koopjs/output-geoservices": "^3.1.6",
"body-parser": "^1.19.0",
"chalk": "^4.0.0",
"compression": "^1.7.4",
"config": "^3.3.1",
"cors": "^2.8.5",
"easy-table": "^1.1.1",
"ejs": "^3.1.2",
"express": "^4.17.1",
"featureserver": "^4.0.1",
"koop-localfs": "^1.1.2",
"lodash": "^4.17.15"
},
"devDependencies": {
"gh-release": "^4.0.0",
"husky": "^4.2.5",
"lint-staged": "^10.1.7",
"mocha": "^10.2.0",
"should": "^13.2.3",
"should-sinon": "0.0.6",
"sinon": "^9.0.2",
"standard": "^14.3.1",
"supertest": "^4.0.2"
},
"homepage": "https://github.com/koopjs/koop-core",
"keywords": [
"etl",
"feature",
"featureService",
"geojson",
"geospatial",
"koop",
"service",
"spatial"
],
"license": "Apache-2.0",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/koopjs/koop-core.git"
},
"scripts": {
"release": "gh-release",
"test": "standard && mocha test --recursive -t 5000"
},
"standard": {
"globals": [
"describe",
"it",
"before",
"after",
"beforeEach",
"afterEach"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "standard --fix"
}
}