UNPKG

1.42 kBJSONView Raw
1{
2 "name": "reserve-cache",
3 "version": "1.0.0",
4 "description": "cache handler for REserve",
5 "main": "./index.js",
6 "files": [
7 "*.js"
8 ],
9 "engines": {
10 "node": ">=10.0.0"
11 },
12 "scripts": {
13 "test": "standard && nyc mocha",
14 "lint": "standard --fix",
15 "mocha": "mocha",
16 "mocha-dbg": "node --inspect-brk node_modules/mocha/bin/_mocha",
17 "cover": "nyc mocha && nyc report --reporter=lcov"
18 },
19 "repository": {
20 "type": "git",
21 "url": "git+https://github.com/ArnaudBuchholz/reserve-cache.git"
22 },
23 "keywords": [
24 "reserve",
25 "cache"
26 ],
27 "author": "Arnaud Buchholz",
28 "license": "MIT",
29 "bugs": {
30 "url": "https://github.com/ArnaudBuchholz/reserve-cache/issues"
31 },
32 "homepage": "https://github.com/ArnaudBuchholz/reserve-cache#readme",
33 "devDependencies": {
34 "coveralls": "^3.0.9",
35 "eslint-utils": "^2.0.0",
36 "lodash": "^4.17.15",
37 "mocha": "^7.0.0",
38 "mock-require": "^3.0.3",
39 "nyc": "^15.0.0",
40 "reserve": "^1.1.7",
41 "standard": "^14.3.1"
42 },
43 "dependencies": {},
44 "standard": {
45 "globals": [
46 "process",
47 "describe",
48 "it",
49 "before",
50 "after"
51 ]
52 },
53 "mocha": {
54 "spec": [
55 "tests/mocha/*.test.js"
56 ]
57 },
58 "nyc": {
59 "check-coverage": true,
60 "exclude": [
61 "tests/mocha/assert.js"
62 ],
63 "branches": 100,
64 "lines": 100,
65 "functions": 100,
66 "statements": 100
67 }
68}