2011-06-30 19:13:39 +08:00
|
|
|
{
|
2016-08-30 22:43:30 +08:00
|
|
|
"private": true,
|
|
|
|
"name": "cartodb_sql_api",
|
|
|
|
"description": "high speed SQL api for cartodb",
|
|
|
|
"keywords": [
|
|
|
|
"cartodb"
|
|
|
|
],
|
2018-07-25 16:00:13 +08:00
|
|
|
"version": "2.2.1",
|
2016-08-30 22:43:30 +08:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git://github.com/CartoDB/CartoDB-SQL-API.git"
|
|
|
|
},
|
|
|
|
"license": "BSD-3-Clause",
|
|
|
|
"author": "Vizzuality <contact@vizzuality.com> (http://vizzuality.com)",
|
|
|
|
"contributors": [
|
|
|
|
"Simon Tokumine <simon@vizzuality.com>",
|
|
|
|
"Sandro Santilli <strk@vizzuality.com>"
|
|
|
|
],
|
|
|
|
"dependencies": {
|
2018-06-08 20:40:44 +08:00
|
|
|
"@carto/fqdn-sync": "0.2.2",
|
2018-02-16 17:46:58 +08:00
|
|
|
"basic-auth": "^2.0.0",
|
2016-10-19 18:39:33 +08:00
|
|
|
"bintrees": "1.0.1",
|
2016-09-29 21:09:36 +08:00
|
|
|
"bunyan": "1.8.1",
|
2018-06-06 21:05:47 +08:00
|
|
|
"cartodb-psql": "0.12.0",
|
2016-08-30 22:43:30 +08:00
|
|
|
"cartodb-query-tables": "0.2.0",
|
2018-07-06 16:35:33 +08:00
|
|
|
"cartodb-redis": "2.0.1",
|
2016-08-30 22:43:30 +08:00
|
|
|
"debug": "2.2.0",
|
2016-09-27 00:09:27 +08:00
|
|
|
"express": "~4.13.3",
|
2016-08-30 22:43:30 +08:00
|
|
|
"log4js": "cartodb/log4js-node#cdb",
|
|
|
|
"lru-cache": "~2.5.0",
|
2018-08-30 18:27:25 +08:00
|
|
|
"mkdirp": "0.5.1",
|
2018-07-05 18:34:33 +08:00
|
|
|
"multer": "~1.2.0",
|
2016-08-30 22:43:30 +08:00
|
|
|
"node-statsd": "~0.0.7",
|
|
|
|
"node-uuid": "^1.4.7",
|
|
|
|
"oauth-client": "0.3.0",
|
2018-06-11 20:59:56 +08:00
|
|
|
"pg-copy-streams": "cartodb/node-pg-copy-streams#v1.2.0-carto.1",
|
2016-10-05 20:22:44 +08:00
|
|
|
"qs": "~6.2.1",
|
2016-08-30 22:43:30 +08:00
|
|
|
"queue-async": "~1.0.7",
|
2018-02-06 23:14:47 +08:00
|
|
|
"redis-mpool": "0.5.0",
|
2016-10-11 01:51:11 +08:00
|
|
|
"redlock": "2.0.1",
|
2016-10-20 00:42:53 +08:00
|
|
|
"request": "~2.75.0",
|
2016-08-30 22:43:30 +08:00
|
|
|
"step": "~0.0.5",
|
|
|
|
"step-profiler": "~0.3.0",
|
|
|
|
"topojson": "0.0.8",
|
2016-09-15 06:36:24 +08:00
|
|
|
"underscore": "~1.6.0",
|
|
|
|
"yargs": "~5.0.0"
|
2016-08-30 22:43:30 +08:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2016-12-07 23:13:13 +08:00
|
|
|
"istanbul": "0.4.5",
|
2016-08-30 22:43:30 +08:00
|
|
|
"jshint": "~2.6.0",
|
2016-12-07 23:13:13 +08:00
|
|
|
"libxmljs": "0.18.0",
|
2016-12-19 23:25:59 +08:00
|
|
|
"mocha": "3.2.0",
|
|
|
|
"shapefile": "0.3.0",
|
2018-06-08 17:39:23 +08:00
|
|
|
"sqlite3": "4.0.0",
|
2016-12-19 23:25:59 +08:00
|
|
|
"zipfile": "0.5.11"
|
2016-08-30 22:43:30 +08:00
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"test": "make test-all",
|
|
|
|
"test:unit": "mocha test/unit/**/*.js",
|
2018-04-27 23:37:46 +08:00
|
|
|
"test:unit:watch": "npm run test:unit -- -w",
|
2018-05-03 23:41:37 +08:00
|
|
|
"docker-test": "docker run -v `pwd`:/srv carto/nodejs6-xenial-pg101 bash test/run_tests_docker.sh && docker ps --filter status=dead --filter status=exited -aq | xargs -r docker rm -v",
|
|
|
|
"docker-bash": "docker run -it -v `pwd`:/srv carto/nodejs6-xenial-pg101 bash"
|
2016-08-30 22:43:30 +08:00
|
|
|
},
|
|
|
|
"engines": {
|
2018-06-08 17:39:23 +08:00
|
|
|
"node": ">= 4.5.0",
|
2016-08-30 22:43:30 +08:00
|
|
|
"npm": ">=1.2.1"
|
|
|
|
}
|
2011-09-21 10:15:43 +08:00
|
|
|
}
|