-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
129 lines (129 loc) · 3.28 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "@kalisio/krawler",
"description": "Make automated process of extracting data from web services easy",
"version": "2.7.1",
"homepage": "https://github.com/kalisio/krawler",
"main": "lib/index.js",
"bin": "lib/bin.js",
"type": "module",
"keywords": [
"feathers",
"feathers-plugin",
"etl",
"gis"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/kalisio/krawler.git"
},
"author": {
"name": "Kalisio contributors",
"url": "https://github.com/kalisio"
},
"contributors": [],
"bugs": {
"url": "https://github.com/kalisio/krawler/issues"
},
"engines": {
"node": ">= 16.0.0"
},
"scripts": {
"publish": "git push origin HEAD --tags",
"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",
"lint": "standard lib/**/*.js test/**/*.js healthcheck.js --fix",
"mocha": "mocha --exit",
"coverage": "c8 npm run mocha",
"test": "npm run lint && npm run coverage",
"start": "node lib"
},
"standard": {
"sourceType": "module",
"env": [
"mocha"
]
},
"c8": {
"all": true,
"reporter": [
"lcov"
]
},
"pkg": {
"scripts": [
"lib/**/*.js"
]
},
"directories": {
"lib": "lib"
},
"dependencies": {
"@feathersjs/client": "^5.0.8",
"@feathersjs/errors": "^5.0.8",
"@feathersjs/express": "^5.0.8",
"@feathersjs/feathers": "^5.0.8",
"@feathersjs/socketio": "^5.0.8",
"@kalisio/feathers-distributed": "^2.4.0",
"@kalisio/geo-pixel-stream": "https://github.com/kalisio/geo-pixel-stream#gdal-async",
"@mapbox/sphericalmercator": "^1.0.5",
"@tmcw/togeojson": "^5.2.1",
"@turf/turf": "6.2.0-alpha.3",
"aws-sdk": "^2.1151.0",
"commander": "^2.11.0",
"compression": "^1.6.2",
"cors": "^2.8.1",
"cron": "^1.3.0",
"cross-spawn": "^7.0.3",
"debug": "^4.1.0",
"dockerode": "^2.5.5",
"envsub": "^4.0.7",
"feathers-hooks-common": "^3.0.0",
"fs-blob-store": "^5.2.1",
"fs-extra": "^8.1.0",
"helmet": "^3.5.0",
"imapflow": "^1.0.162",
"js-yaml": "^3.13.1",
"kue": "^0.11.6",
"lodash": "^4.17.15",
"mathjs": "^5.7.0",
"memory-blob-store": "^5.0.1",
"merge-stream": "^1.0.1",
"moment": "^2.24.0",
"mongodb": "^3.6.2",
"mubsub-es": "^2.0.0",
"node-fetch": "^3.2.6",
"osmtogeojson": "^3.0.0-beta.3",
"papaparse": "^5.4.0",
"pg": "^8.7.3",
"proj4": "^2.4.4",
"reproject": "^1.2.1",
"request": "^2.88.0",
"s3-blob-store": "^2.1.0",
"sift": "^6.0.0",
"socket.io-client": "^4.4.1",
"tar": "^4.4.4",
"txt-file-to-json": "^3.0.6",
"unzipper": "^0.9.5",
"uuid": "^3.2.1",
"winston": "^3.7.2",
"xml2js": "^0.5.0",
"xmldom": "^0.6.0"
},
"devDependencies": {
"@feathersjs/memory": "^5.0.8",
"c8": "^7.11.2",
"chai": "^4.2.0",
"chai-lint": "^0.1.1",
"feathers-mongodb": "^6.0.0",
"loader-runner": "^3.0.0",
"mocha": "^9.0.0",
"nock": "^12.0.0",
"shx": "^0.3.2",
"standard": "^17.0.0",
"stylus-loader": "^3.0.2",
"winston-daily-rotate-file": "^4.7.1",
"winston-mongodb": "^5.0.7"
}
}