mirror of
https://github.com/vale981/apollo-server
synced 2025-03-06 10:11:40 -05:00

* Refactored caching connectors into their own packages - apollo-server-caching (exports interface for KeyValueCache) - apollo-server-caching-memcached - apollo-server-caching-redis One issue now is that there is duplication of mocks and test code in each of the packages. It would be better if we had centralized integration tests for all cache connectors, community contributed or otherwise. * export test suite for cache connectors from `apollo-server-caching` * fixed tsconfig.json * added @types
24 lines
646 B
JSON
24 lines
646 B
JSON
{
|
|
"name": "apollo-server-caching",
|
|
"version": "2.0.0-rc.0",
|
|
"author": "opensource@apollographql.com",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/apollographql/apollo-server/tree/master/packages/apollo-server-caching"
|
|
},
|
|
"homepage": "https://github.com/apollographql/apollo-server#readme",
|
|
"bugs": {
|
|
"url": "https://github.com/apollographql/apollo-server/issues"
|
|
},
|
|
"scripts": {
|
|
"clean": "rm -rf lib",
|
|
"compile": "tsc",
|
|
"prepublish": "npm run clean && npm run compile"
|
|
},
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"engines": {
|
|
"node": ">=6"
|
|
}
|
|
}
|