-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
73 lines (73 loc) · 1.68 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
{
"name": "featureserver",
"version": "5.0.0",
"description": "*An open source implementation of the GeoServices specification*",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "standard && mocha 'test/**/*.spec.js' --recursive -t 5000",
"test:cov": "nyc --reporter=html mocha 'test/**/*.spec.js' ",
"test:cov-unit": "nyc --reporter=html mocha 'test/unit/**/*.spec.js' ",
"fix": "standard --fix"
},
"contributors": [
{
"name": "Daniel Fenton"
},
{
"name": "Rich Gwozdz",
"email": "[email protected]"
}
],
"license": "Apache-2.0",
"dependencies": {
"@esri/proj-codes": "^3.0.0",
"@terraformer/spatial": "^2.0.7",
"chalk": "^4.0.0",
"chroma-js": "^2.0.0",
"esri-extent": "^1.1.1",
"geojson-validation": "^1.0.2",
"iso-datestring-validator": "^2.2.0",
"joi": "^17.3.0",
"lodash": "^4.17.21",
"winnow": "^2.6.0",
"wkt-parser": "^1.3.2"
},
"devDependencies": {
"express": "^4.14.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"should": "^13.0.0",
"should-sinon": "0.0.6",
"sinon": "^15.0.0",
"standard": "^14.3.0",
"supertest": "^6.0.0"
},
"standard": {
"globals": [
"describe",
"it",
"before",
"after",
"beforeEach",
"afterEach"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/koopjs/FeatureServer.git"
},
"keywords": [
"featureserver",
"geoservices",
"geojson",
"sql"
],
"bugs": {
"url": "https://github.com/koopjs/FeatureServer/issues"
},
"homepage": "https://github.com/koopjs/FeatureServer#readme"
}