-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.18 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "graphql-hooks-memcache",
"version": "3.2.0",
"description": "In memory cache for graphql-hooks",
"main": "lib/graphql-hooks-memcache.js",
"module": "es/graphql-hooks-memcache.js",
"unpkg": "dist/graphql-hooks-memcache.min.js",
"types": "index.d.ts",
"scripts": {
"clean": "rm -rf ./dist ./es ./lib",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "cross-env NODE_OPTIONS=--openssl-legacy-provider rollup -c",
"prepublishOnly": "npm run build && cp ../../LICENSE ."
},
"files": [
"dist",
"es",
"lib",
"index.d.ts"
],
"keywords": [
"graphql",
"hooks",
"react",
"graphql-hooks",
"cache",
"ssr",
"server-side rendering"
],
"author": "Brian Mullan <bmullan91@gmail.com>",
"license": "Apache-2.0",
"dependencies": {
"tiny-lru": "^11.0.1"
},
"repository": {
"type": "git",
"url": "git://github.com/nearform/graphql-hooks.git"
},
"bugs": {
"url": "https://github.com/nearform/graphql-hooks/issues"
},
"homepage": "https://github.com/nearform/graphql-hooks/blob/master/packages/graphql-hooks-memcache#readme",
"devDependencies": {
"cross-env": "^7.0.3"
}
}