-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
67 lines (67 loc) · 1.61 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
{
"name": "pelias-csv-importer",
"version": "0.0.0-dev",
"description": "Pelias import pipeline for data from CSV files",
"engines": {
"node": ">=10.0.0"
},
"main": "import.js",
"dependencies": {
"@hapi/joi": "^16.0.0",
"async": "^3.0.1",
"combined-stream": "^1.0.7",
"csv-parse": "^5.0.3",
"fs-extra": "^8.0.0",
"glob": "^7.0.0",
"lodash": "^4.16.0",
"minimist": "^1.2.0",
"pelias-blacklist-stream": "^1.0.0",
"pelias-config": "^6.0.0",
"pelias-dbclient": "^3.1.0",
"pelias-logger": "^1.3.0",
"pelias-model": "^10.0.0",
"pelias-wof-admin-lookup": "^7.11.0",
"through2": "^3.0.0",
"through2-filter": "^3.0.0",
"through2-map": "^3.0.0",
"through2-sink": "^1.0.0"
},
"devDependencies": {
"deep-diff": "^1.0.2",
"jshint": "^2.9.4",
"proxyquire": "^2.1.0",
"stream-mock": "^2.0.3",
"tap-spec": "^5.0.0",
"tape": "^5.0.0",
"temp": "^0.9.0"
},
"scripts": {
"import": "./bin/start",
"parallel": "./bin/parallel",
"test": "NODE_ENV=test npm run units",
"units": "node test/test.js | tap-spec",
"download": "./bin/download",
"lint": "jshint .",
"validate": "npm ls",
"ci": "npm test",
"start": "./bin/start"
},
"repository": {
"type": "git",
"url": "https://github.com/pelias/csv-importer.git"
},
"keywords": [
"Pelias",
"import"
],
"author": "pelias",
"license": "MIT",
"bugs": {
"url": "https://github.com/pelias/csv-importer/issues"
},
"homepage": "https://github.com/pelias/csv-importer",
"release": {
"branch": "master",
"success": []
}
}