-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 755 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 755 Bytes
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
{
"name": "sequelize-redis-cache",
"version": "2.0.1",
"description": "Caching module for sequelize queries",
"main": "lib/index.js",
"scripts": {
"test": "./node_modules/.bin/mocha --timeout=5000 --require should test/**/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/rfink/sequelize-redis-cache.git"
},
"keywords": [
"sequelize",
"mysql",
"redis",
"cache",
"postgres",
"sqlite"
],
"author": "Ryan Fink <ryanjfink@gmail.com>",
"license": "MIT",
"devDependencies": {
"mocha": "2.5.3",
"redis": "~2.6.0",
"sequelize": "~3.23.0",
"should": "10.0.0",
"sqlite3": "~3.1.0"
},
"dependencies": {
"bluebird": "3.4.1",
"circular-json": "0.3.0"
}
}