-
Notifications
You must be signed in to change notification settings - Fork 214
/
package.json
42 lines (42 loc) · 913 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
35
36
37
38
39
40
41
42
{
"name": "memory-cache",
"description": "A simple in-memory cache. put(), get() and del()",
"author": "Paul Tarjan <[email protected]>",
"contributors": [
{
"name": "Ramon Snir",
"email": "[email protected]"
},
{
"name": "Jacob Wenger",
"email": "[email protected]"
}
],
"keywords": [
"cache",
"ram",
"simple",
"storage"
],
"main": "./index.js",
"version": "0.2.0",
"repository": {
"type": "git",
"url": "git://github.com/ptarjan/node-cache.git"
},
"scripts": {
"test": "./node_modules/.bin/gulp test"
},
"license": "BSD-2-Clause",
"devDependencies": {
"chai": "^2.2.0",
"gulp": "^3.8.11",
"gulp-exit": "0.0.2",
"gulp-istanbul": "^0.7.0",
"gulp-jshint": "^1.10.0",
"gulp-mocha": "^2.0.1",
"jshint-stylish": "^1.0.1",
"sinon": "^1.14.1",
"sinon-chai": "^2.7.0"
}
}