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.
66 lines
1.8 KiB
66 lines
1.8 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-spec", |
|
"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": "rm -r docs; cd test/ciao; node ../../node_modules/ciao/bin/ciao -c ../ciao.json . -d ../../docs" |
|
}, |
|
"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": "1.3.0", |
|
"async": "^0.9.0", |
|
"cluster2": "git://github.com/missinglink/cluster2.git#node_zero_twelve", |
|
"express": "^4.8.8", |
|
"express-http-proxy": "^0.6.0", |
|
"extend": "2.0.1", |
|
"geojson": "^0.2.1", |
|
"geojson-extent": "^0.3.1", |
|
"geopipes-elasticsearch-backend": "^0.2.0", |
|
"is-object": "^1.0.1", |
|
"markdown": "0.5.0", |
|
"microtime": "1.4.0", |
|
"morgan": "1.5.2", |
|
"pelias-config": "^1.0.1", |
|
"pelias-esclient": "0.0.25", |
|
"pelias-logger": "^0.0.8", |
|
"pelias-schema": "1.0.0", |
|
"pelias-suggester-pipeline": "2.0.2", |
|
"through2": "0.6.5" |
|
}, |
|
"devDependencies": { |
|
"ciao": "^0.3.4", |
|
"istanbul": "^0.3.13", |
|
"jshint": "^2.5.6", |
|
"nsp": "^0.3.0", |
|
"precommit-hook": "^1.0.7", |
|
"proxyquire": "^1.4.0", |
|
"tap-spec": "^0.2.0", |
|
"tape": "^2.13.4" |
|
} |
|
}
|
|
|