-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 790 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 790 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
{
"name": "sync-memcached-store",
"version": "0.0.3",
"description": "A synchronous Fibers-powered memcached store for SyncCache module",
"main": "sync-memcached-store.js",
"scripts": {
"test": "NODE_ENV=test mocha -w -g Unit test/",
"integration": "NODE_ENV=test mocha -w -g Integration test/"
},
"keywords": [
"sync",
"cache",
"store",
"memcached"
],
"repository": {
"type": "git",
"url": "https://github.com/AirAsiaExpedia/node-sync-memcached-store"
},
"author": "Jerome Touffe-Blin <jtblin@gmail.com>",
"license": "BSD-2-Clause",
"dependencies": {
"memcached": "~0.2.8",
"syncho": "~0.0.3"
},
"devDependencies": {
"mocha": "~1.18.2",
"chai": "~1.9.1",
"sinon": "~1.9.0",
"sinon-chai": "~2.5.0"
}
}