CartoDB-SQL-API/package.json

98 lines
2.7 KiB
JSON
Raw Normal View History

{
2016-08-30 22:43:30 +08:00
"private": true,
2019-12-29 02:58:12 +08:00
"name": "cartodb-sql-api",
2020-06-05 20:02:34 +08:00
"version": "6.0.0",
2019-12-29 02:58:12 +08:00
"description": "High speed SQL API for CARTO",
2016-08-30 22:43:30 +08:00
"keywords": [
2019-12-29 02:58:12 +08:00
"carto",
"sql",
"batch",
"import",
"export",
"geospatial"
2016-08-30 22:43:30 +08:00
],
2019-12-29 02:58:12 +08:00
"url": "https://github.com/CartoDB/CartoDB-SQL-API",
"license": "BSD-3-Clause",
2016-08-30 22:43:30 +08:00
"repository": {
"type": "git",
"url": "git://github.com/CartoDB/CartoDB-SQL-API.git"
},
2019-12-29 02:58:12 +08:00
"author": "CARTO (https://carto.com)",
2016-08-30 22:43:30 +08:00
"contributors": [
"Simon Tokumine <simon@vizzuality.com>",
2019-10-01 22:11:18 +08:00
"Sandro Santilli <strk@vizzuality.com>",
2019-12-29 02:58:12 +08:00
"Raúl Ochoa <rochoa@carto.com>",
2019-10-01 22:11:18 +08:00
"Daniel García Aubert <dgaubert@carto.com>"
2016-08-30 22:43:30 +08:00
],
2019-12-29 02:58:12 +08:00
"main": "app.js",
2016-08-30 22:43:30 +08:00
"dependencies": {
2018-06-08 20:40:44 +08:00
"@carto/fqdn-sync": "0.2.2",
"@google-cloud/pubsub": "1.5.0",
"assign-deep": "^1.0.1",
2018-02-16 17:46:58 +08:00
"basic-auth": "^2.0.0",
"bintrees": "1.0.1",
"bunyan": "1.8.1",
"cartodb-psql": "0.14.0",
"cartodb-query-tables": "^0.7.0",
"cartodb-redis": "^3.0.0",
2019-01-17 00:42:03 +08:00
"debug": "^4.1.1",
"express": "^4.16.4",
"gc-stats": "^1.4.0",
2016-08-30 22:43:30 +08:00
"log4js": "cartodb/log4js-node#cdb",
"lru-cache": "~2.5.0",
"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",
2019-05-24 23:30:26 +08:00
"pg-copy-streams": "github:cartodb/node-pg-copy-streams#v2.x-carto",
"pino": "^6.3.2",
"prom-client": "^12.0.0",
"qs": "~6.2.1",
2016-08-30 22:43:30 +08:00
"queue-async": "~1.0.7",
"redis-mpool": "^0.8.0",
"redlock": "2.0.1",
"request": "^2.88.0",
"split2": "^3.1.1",
2016-08-30 22:43:30 +08:00
"step": "~0.0.5",
"step-profiler": "~0.3.0",
"topojson": "0.0.8",
"underscore": "~1.6.0",
"uuid": "^8.1.0",
2020-06-01 17:19:15 +08:00
"yargs": "^15.3.1"
2016-08-30 22:43:30 +08:00
},
"devDependencies": {
"adm-zip": "^0.4.14",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"libxmljs": "^0.19.7",
2020-06-01 17:13:56 +08:00
"mocha": "^7.2.0",
2018-12-11 18:37:45 +08:00
"mockdate": "^2.0.2",
2020-12-17 18:11:49 +08:00
"nodemon": "^2.0.6",
"nyc": "^15.0.0",
"pino-pretty": "^4.0.0",
2016-12-19 23:25:59 +08:00
"shapefile": "0.3.0",
"sinon": "^9.0.0",
"sqlite3": "^4.2.0"
2016-08-30 22:43:30 +08:00
},
"scripts": {
"lint:fix": "eslint --fix app.js \"lib/**/*.js\" \"test/**/*.js\"",
"lint": "eslint app.js \"lib/**/*.js\" \"test/**/*.js\"",
"pretest:setup": "npm run lint",
"test:setup": "NODE_ENV=test node test setup",
"pretest": "npm run test:setup",
"test": "NODE_ENV=test TZ='Europe/Rome' mocha -t 5000 --exit --recursive test/acceptance test/integration test/unit",
"posttest": "npm run test:teardown",
"test:teardown": "NODE_ENV=test node test teardown",
"cover": "nyc --reporter=lcov npm test",
2020-12-17 18:11:49 +08:00
"dev": "NODE_ENV=development nodemon app.js"
2016-08-30 22:43:30 +08:00
},
"engines": {
2019-02-22 02:00:57 +08:00
"node": "^10.15.1",
"npm": "^6.4.1"
2016-08-30 22:43:30 +08:00
}
}