forked from pelias/whosonfirst
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.96 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
{
"name": "pelias-whosonfirst",
"version": "0.0.0-semantic-release",
"engines": {
"node": ">=4.0.0"
},
"description": "Importer for Who's on First",
"main": "index.js",
"scripts": {
"start": "node import.js",
"download": "node ./utils/download_data.js",
"test": "node test/test | tap-dot",
"lint": "jshint .",
"validate": "npm ls",
"travis": "npm run check-dependencies && npm run test",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"check-dependencies": "node_modules/.bin/npm-check --production"
},
"repository": {
"type": "git",
"url": "https://github.com/pelias/whosonfirst.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/pelias/whosonfirst/issues"
},
"homepage": "https://github.com/pelias/whosonfirst#readme",
"dependencies": {
"async": "^2.5.0",
"combined-stream": "^1.0.5",
"csv-stream": "^0.1.3",
"csv-string": "^2.3.2",
"download-file-sync": "^1.0.4",
"fs-extra": "^4.0.0",
"iso3166-1": "^0.3.0",
"joi": "^12.0.0",
"klaw-sync": "^3.0.0",
"lodash": "^4.5.1",
"node-version-checker": "^2.0.0",
"pelias-config": "2.13.0",
"pelias-dbclient": "2.3.0",
"pelias-logger": "0.3.0",
"pelias-model": "5.2.0",
"pelias-parallel-stream": "0.1.0",
"request-rate-limiter": "^1.0.2",
"stream-array": "^1.1.2",
"through2": "^2.0.0",
"through2-filter": "^2.0.0",
"through2-map": "^3.0.0",
"through2-sink": "^1.0.0"
},
"devDependencies": {
"event-stream": "^3.3.2",
"jshint": "^2.5.6",
"npm-check": "git://github.com/orangejulius/npm-check.git#disable-update-check",
"pelias-mock-logger": "^1.1.0",
"precommit-hook": "^3.0.0",
"proxyquire": "^1.7.11",
"semantic-release": "^8.0.0",
"tap-dot": "^1.0.0",
"tape": "^4.2.2",
"temp": "^0.8.3"
},
"pre-commit": [
"lint",
"validate",
"test",
"check-dependencies"
]
}