-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·80 lines (80 loc) · 2.17 KB
/
package.json
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@outofsync/memory-cache",
"version": "2.0.2",
"description": "A Promise-based, simple, Redis-like, in-memory cache written in pure Javascript",
"main": "index.js",
"types": "index.d.ts",
"type": "module",
"scripts": {
"test": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" npx jest",
"build": "npm run lint && npm run test && npm run coverage",
"fix": "eslint --fix",
"lint": "eslint",
"coverage": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" npx jest --coverage",
"pretty": "prettier **/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OutOfSyncStudios/memory-cache.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"memory",
"memory-based",
"cache",
"redis",
"mock",
"stand-in",
"fail-over",
"in-memory",
"redis-mock",
"redis mock",
"mock-redis",
"redis js",
"redis-js",
"redisjs",
"standalone"
],
"author": "Jay Reardon",
"license": "MIT",
"bugs": {
"url": "https://github.com/OutOfSyncStudios/memory-cache/issues"
},
"homepage": "https://github.com/OutOfSyncStudios/memory-cache#readme",
"dependencies": {
"ajv": "^8.6.2",
"bluebird": "^3.5.5",
"geolib": "^3.0.4",
"lodash.difference": "^4.5.0",
"lodash.flatten": "^4.4.0",
"lodash.frompairs": "^4.0.1",
"lodash.intersection": "^4.4.0",
"lodash.isnil": "^4.0.0",
"lodash.isundefined": "^3.0.1",
"lodash.keys": "^4.2.0",
"lodash.merge": "^4.6.2",
"lodash.mergewith": "^4.6.2",
"lodash.padend": "^4.6.1",
"lodash.padstart": "^4.6.1",
"lodash.pick": "^4.4.0",
"lodash.reverse": "^4.0.1",
"lodash.sample": "^4.2.1",
"lodash.samplesize": "^4.2.0",
"lodash.size": "^4.2.0",
"lodash.sortby": "^4.7.0",
"lodash.topairs": "^4.3.0",
"lodash.union": "^4.6.0",
"ngeohash": "^0.6.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.6.0",
"eslint": "^9.6.0",
"globals": "^15.6.0",
"jest": "^29.7.0",
"lolex": "^6.0.0",
"prettier": "^3.3.2"
}
}