-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
executable file
·53 lines (53 loc) · 1.39 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
{
"name": "mysql-cache",
"version": "2.1.2",
"description": "Automatically caches SELECT sql's in memory with cacheProviders of your choice",
"main": "app.js",
"scripts": {
"test": "mocha",
"cover": "istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec ./test/*",
"coveralls": "npm bin /istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec ./test/* && node node_modules/coveralls/bin/coveralls.js < coverage/lcov.info"
},
"repository": {
"type": "git",
"url": "[email protected]:michaeldegroot/mysql-cache.git"
},
"keywords": [
"mysql",
"cache",
"mysql-cache",
"driver"
],
"author": {
"name": "michaeldegroot",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"benchmark": "^2.1.3",
"bluebird": "^3.5.0",
"cacheman": "^2.2.1",
"cacheman-file": "^0.2.1",
"cacheman-memory": "^1.0.2",
"cacheman-redis": "^1.1.2",
"check-nested": "^0.0.6",
"colors": "^1.1.2",
"extend": "^3.0.0",
"install-package": "^0.4.0",
"lru-cache": "^4.0.2",
"memcached": "^2.2.2",
"moment": "^2.17.1",
"mysql2": "^1.1.2",
"node-cache": "^4.1.1"
},
"devDependencies": {
"assert-plus": "^1.0.0",
"async": "^2.1.4",
"coveralls": "^2.11.8",
"istanbul": "^0.4.1",
"mocha": "^3.2.0",
"mocha-lcov-reporter": "^1.0.0",
"moment": "^2.17.1",
"pace": "^0.0.4"
}
}