-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.36 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": "@kalisio/geokoder",
"description": "Kalisio geocoding service",
"version": "1.1.0",
"homepage": "https://github.com/kalisio/geokoder",
"main": "src/main.js",
"bin": "src/bin.js",
"type": "module",
"keywords": [
"geocoding",
"api"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/kalisio/geokoder.git"
},
"author": {
"name": "Kalisio contributors",
"url": "https://github.com/kalisio/geokoder"
},
"contributors": [],
"bugs": {
"url": "https://github.com/kalisio/geokoder/issues"
},
"scripts": {
"publish": "git push origin --tags && git push origin",
"release:patch": "npm version patch && npm publish --access public",
"release:minor": "npm version minor && npm publish --access public",
"release:major": "npm version major && npm publish --access public",
"dev": "nodemon --watch src --exec npm run debug",
"debug": "cross-env NODE_ENV=development node --inspect=:9222 src/bin.js",
"prod": "cross-env NODE_ENV=production node src/bin.js",
"lint": "standard src/**/*.js test/**/*.js --fix",
"mocha": "cross-env NODE_CONFIG_DIR=./test/config/ mocha --exit",
"coverage": "c8 npm run mocha",
"test": "npm run lint && npm run coverage"
},
"standard": {
"sourceType": "module",
"env": [
"mocha"
]
},
"dependencies": {
"@feathersjs/commons": "^5.0.8",
"@feathersjs/configuration": "^5.0.8",
"@feathersjs/express": "^5.0.8",
"@feathersjs/feathers": "^5.0.8",
"@kalisio/feathers-distributed": "^2.4.0",
"@mapbox/mbtiles": "^0.12.1",
"@mapbox/vtquery": "^0.6.0",
"@turf/distance": "7.2.0",
"@turf/point-to-line-distance": "7.2.0",
"@turf/point-to-polygon-distance": "7.2.0",
"containerized": "^1.0.2",
"cors": "^2.8.5",
"debug": "^4.1.0",
"fs-extra": "^11.1.1",
"glob": "^10.3.10",
"lodash": "^4.17.21",
"minimatch": "^9.0.3",
"node-fetch": "^3.3.2",
"node-geocoder": "~4.4.1",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^3.10.0",
"zlib": "^1.0.5"
},
"devDependencies": {
"@kalisio/kdk": "^2.2.0",
"c8": "^7.11.0",
"chai": "^4.3.6",
"chai-lint": "^0.1.1",
"cross-env": "^7.0.3",
"mocha": "^9.2.2",
"nodemon": "^2.0.15",
"standard": "^16.0.4",
"superagent": "^8.1.2"
},
"resolutions": {
"wrap-ansi": "7.0.0"
}
}