Windshaft-cartodb/package.json

99 lines
3.0 KiB
JSON
Raw Normal View History

2011-09-05 07:00:41 +08:00
{
"private": true,
"name": "windshaft-cartodb",
2020-01-27 19:56:44 +08:00
"version": "8.1.1",
2019-11-29 19:37:33 +08:00
"description": "CARTO Maps API tiler",
"keywords": [
2019-11-29 19:37:33 +08:00
"carto",
"tiler",
"maps",
"anonymous maps",
"named maps",
"static maps",
"smart aggregations",
"analysis",
"dataviews"
],
"url": "https://github.com/CartoDB/Windshaft-cartodb",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git://github.com/CartoDB/Windshaft-cartodb.git"
},
2019-12-30 19:43:00 +08:00
"author": "CARTO (https://carto.com)",
"contributors": [
"Simon Tokumine <simon@vizzuality.com>",
"Javi Santana <jsantana@vizzuality.com>",
2019-12-30 19:43:00 +08:00
"Raúl Ochoa <rochoa@carto.com>",
"Sandro Santilli <strk@vizzuality.com>",
2017-08-31 16:12:58 +08:00
"Carlos Matallín <matallo@carto.com>",
2019-12-30 19:43:00 +08:00
"Daniel García Aubert <dgaubert@carto.com>",
2017-12-12 23:02:39 +08:00
"Mario de Frutos <mario.defrutos@carto.com>",
"Ivan Malagon <ivan@carto.com>",
"Simon Martin <simon@carto.com>"
],
2019-12-30 19:43:00 +08:00
"main": "app.js",
"dependencies": {
2018-06-08 20:41:31 +08:00
"@carto/fqdn-sync": "0.2.2",
"basic-auth": "2.0.0",
2018-05-21 16:25:04 +08:00
"body-parser": "1.18.3",
2019-12-02 21:22:41 +08:00
"camshaft": "^0.65.1",
2019-09-13 22:32:37 +08:00
"cartodb-psql": "0.14.0",
"cartodb-query-tables": "^0.7.0",
2018-11-22 00:14:03 +08:00
"cartodb-redis": "2.1.0",
"debug": "3.1.0",
2018-05-21 16:46:29 +08:00
"dot": "1.1.2",
2018-05-21 18:30:28 +08:00
"express": "4.16.3",
"fastly-purge": "1.0.1",
2019-01-03 18:47:54 +08:00
"gc-stats": "1.2.1",
"glob": "7.1.2",
"log4js": "github:cartodb/log4js-node#cdb",
2018-05-21 19:29:07 +08:00
"lru-cache": "4.1.3",
"lzma": "2.3.2",
2018-05-21 18:21:40 +08:00
"node-statsd": "0.1.1",
"on-headers": "1.0.1",
2018-05-21 17:58:23 +08:00
"queue-async": "1.1.0",
2018-11-21 20:11:30 +08:00
"redis-mpool": "0.7.0",
2018-05-21 16:53:29 +08:00
"request": "2.87.0",
2018-05-21 18:04:23 +08:00
"semver": "5.5.0",
"step-profiler": "0.3.0",
2019-06-12 16:37:53 +08:00
"turbo-carto": "0.21.2",
"underscore": "1.6.0",
2019-10-29 01:15:15 +08:00
"windshaft": "5.6.4",
2018-05-21 18:47:48 +08:00
"yargs": "11.1.0"
},
"devDependencies": {
2019-10-22 00:49:48 +08:00
"eslint": "^6.5.1",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
2019-01-18 00:19:42 +08:00
"mocha": "5.2.0",
2018-05-21 18:27:21 +08:00
"moment": "2.22.1",
2018-05-21 19:01:01 +08:00
"nock": "9.2.6",
"nyc": "^14.1.1",
2018-01-16 18:59:23 +08:00
"redis": "2.8.0",
2018-08-02 21:14:10 +08:00
"step": "1.0.0",
2018-05-21 18:16:30 +08:00
"strftime": "0.10.0"
},
"scripts": {
2019-10-22 00:49:48 +08:00
"lint:fix": "eslint --fix app.js \"lib/**/*.js\" \"test/**/*.js\"",
"lint": "eslint app.js \"lib/**/*.js\" \"test/**/*.js\"",
2019-11-29 20:43:05 +08:00
"preinstall": "scripts/darwin-pre-install.sh",
2019-11-29 01:07:25 +08:00
"pretest:setup": "npm run lint",
"test:setup": "NODE_ENV=test node test setup",
"pretest": "npm run test:setup",
2019-12-02 21:15:40 +08:00
"test": "NODE_ENV=test mocha -t 5000 --exit --recursive test/acceptance test/integration test/unit",
2019-11-29 01:07:25 +08:00
"posttest": "npm run test:teardown",
"test:teardown": "NODE_ENV=test node test teardown",
2019-12-02 21:15:40 +08:00
"cover": "nyc --reporter=lcov npm test",
2019-11-29 22:55:41 +08:00
"test:docker": "docker run -e \"NODEJS_VERSION=$NODE_VERSION\" -v `pwd`:/srv $DOCKER_IMAGE bash docker/scripts/test-setup.sh && docker ps --filter status=dead --filter status=exited -aq | xargs docker rm -v",
2019-11-29 01:28:01 +08:00
"docker:bash": "docker run -it -v `pwd`:/srv $DOCKER_IMAGE bash"
},
"engines": {
"node": "^10.15.1",
"npm": "^6.4.1"
2019-01-03 18:47:54 +08:00
}
2011-10-13 21:29:53 +08:00
}