forked from pelias/openaddresses
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.73 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
{
"name": "pelias-openaddresses",
"version": "0.0.0-semantic-release",
"description": "Pelias import pipeline for OpenAddresses.",
"engines": {
"node": ">=4.0.0"
},
"main": "import.js",
"dependencies": {
"combined-stream": "1.0.5",
"csv-parse": "^1.1.7",
"glob": "^7.0.0",
"lodash": "^4.10.0",
"minimist": "1.2.0",
"pelias-address-deduplicator": "1.1.0",
"pelias-config": "2.4.0",
"pelias-dbclient": "2.0.0",
"pelias-logger": "0.1.0",
"pelias-model": "4.4.0",
"pelias-wof-admin-lookup": "2.8.0",
"through2": "^2.0.3",
"through2-filter": "^2.0.0",
"through2-map": "^3.0.0",
"through2-sink": "^1.0.0"
},
"devDependencies": {
"deep-diff": "^0.3.3",
"event-stream": "^3.3.2",
"jshint": "^2.9.4",
"precommit-hook": "3.0.0",
"tap-spec": "4.1.1",
"tape": "^4.5.0",
"temp": "^0.8.3",
"semantic-release": "^6.3.2"
},
"scripts": {
"import": "node import.js",
"parallel": "./bin/parallel",
"test": "npm run units",
"units": "node test/test.js | tap-spec",
"functional": "node test/functional.js | tap-spec",
"lint": "jshint .",
"validate": "npm ls",
"travis": "npm run test && npm run functional",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"start": "node import.js"
},
"repository": {
"type": "git",
"url": "https://github.com/pelias/openaddresses.git"
},
"keywords": [
"Pelias",
"OpenAddresses",
"import"
],
"author": "mapzen",
"license": "MIT",
"bugs": {
"url": "https://github.com/pelias/openaddresses/issues"
},
"homepage": "https://github.com/pelias/openaddresses",
"pre-commit": [
"lint",
"validate",
"test"
]
}