forked from node-cache/node-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1003 Bytes
/
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
{
"name": "node-cache",
"description": "Simple and fast NodeJS internal caching. Node internal in memory cache like memcached.",
"keywords": [ "cache", "caching", "local", "variable", "multi", "memory", "internal", "node", "memcached", "object" ],
"tags": [ "cache", "caching", "local", "variable", "multi", "memory", "internal", "node", "memcached", "object" ],
"version": "3.0.1",
"author": "tcs-de <[email protected]>",
"main": "./index.js",
"homepage": "https://github.com/tcs-de/nodecache",
"repository": {
"type": "git",
"url": "git://github.com/tcs-de/nodecache.git"
},
"license": "MIT",
"engines": {
"node": ">= 0.4.6"
},
"scripts": {
"test": "expresso test/node_cache-test.js"
},
"dependencies": {
"lodash": "3.x || 2.x",
"clone": "1.0.x"
},
"devDependencies": {
"expresso": "0.9.2",
"grunt": "0.4.x",
"grunt-regarde": "0.1.x",
"grunt-contrib-coffee": "0.13.x",
"grunt-include-replace": "3.0.x",
"grunt-run": "0.3.x",
"grunt-contrib-clean": "0.6.x"
}
}