-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
24 lines (24 loc) · 899 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
{
"name": "leroux-cache",
"version": "0.2.0",
"description": "A cache object that *actually* deletes the least-recently-used items.",
"author": "Scott Smitelli <scott@smitelli.com>",
"repository": {
"type": "git",
"url": "https://github.com/smitelli/leroux-cache.git"
},
"bugs": "https://github.com/smitelli/leroux-cache/issues",
"license": "MIT",
"main": "lib/leroux-cache.js",
"scripts": {
"ci": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha",
"test": "./node_modules/.bin/mocha"
},
"devDependencies": {
"coveralls": "2.11.2",
"istanbul": "0.3.13",
"mocha": "^2.5.0",
"should": "5.2.0"
}
}