mirror of https://github.com/pelias/api.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
77 lines
2.0 KiB
77 lines
2.0 KiB
{ |
|
"name": "pelias-api", |
|
"author": "mapzen", |
|
"version": "2.2.0", |
|
"description": "Pelias API", |
|
"homepage": "https://github.com/pelias/api", |
|
"license": "MIT", |
|
"main": "index.js", |
|
"scripts": { |
|
"start": "node index.js", |
|
"test": "npm run unit", |
|
"unit": "node test/unit/run.js | tap-dot", |
|
"ciao": "node node_modules/ciao/bin/ciao -c test/ciao.json test/ciao", |
|
"coverage": "node_modules/.bin/istanbul cover test/unit/run.js", |
|
"audit": "npm shrinkwrap; node node_modules/nsp/bin/nspCLI.js audit-shrinkwrap; rm npm-shrinkwrap.json;", |
|
"docs": "./bin/generate-docs", |
|
"lint": "jshint .", |
|
"validate": "npm ls" |
|
}, |
|
"repository": { |
|
"type": "git", |
|
"url": "git://github.com/pelias/api.git" |
|
}, |
|
"keywords": [ |
|
"pelias", |
|
"elasticsearch", |
|
"webview" |
|
], |
|
"bugs": { |
|
"url": "https://github.com/pelias/api/issues" |
|
}, |
|
"engines": { |
|
"node": ">=0.10.26", |
|
"npm": ">=1.4.3", |
|
"elasticsearch": ">=1.2.1" |
|
}, |
|
"dependencies": { |
|
"addressit": "git://github.com/dianashk/addressit.git#temp", |
|
"async": "^1.5.2", |
|
"check-types": "^6.0.0", |
|
"cluster2": "git://github.com/missinglink/cluster2.git#node_zero_twelve", |
|
"elasticsearch": "^10.1.3", |
|
"express": "^4.8.8", |
|
"express-http-proxy": "^0.6.0", |
|
"extend": "3.0.0", |
|
"geojson": "^0.3.0", |
|
"geojson-extent": "^0.3.1", |
|
"geolib": "^2.0.18", |
|
"geopipes-elasticsearch-backend": "^0.2.0", |
|
"iso3166-1": "^0.2.3", |
|
"lodash": "^4.5.0", |
|
"markdown": "0.5.0", |
|
"morgan": "1.7.0", |
|
"pelias-config": "^1.0.1", |
|
"pelias-logger": "^0.0.8", |
|
"pelias-query": "6.2.0", |
|
"pelias-suggester-pipeline": "2.0.4", |
|
"stats-lite": "1.0.3", |
|
"through2": "2.0.1" |
|
}, |
|
"devDependencies": { |
|
"ciao": "^0.6.0", |
|
"difflet": "^1.0.1", |
|
"istanbul": "^0.4.2", |
|
"jshint": "^2.5.6", |
|
"nsp": "^2.2.0", |
|
"precommit-hook": "^3.0.0", |
|
"proxyquire": "^1.4.0", |
|
"tap-dot": "1.0.4", |
|
"tape": "^4.4.0" |
|
}, |
|
"pre-commit": [ |
|
"lint", |
|
"validate", |
|
"test" |
|
] |
|
}
|
|
|