-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.08 KB
/
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": "nodecache.js",
"version": "1.2.2",
"description": "Simple, Intuitive in-memory cache with TTL support for Node.",
"main": "index.js",
"scripts": {
"test": "jest",
"test-coverage": "npx jest --ci --coverage",
"export-coverage-report": "npx jest --ci --json --coverage --testLocationInResults --outputFile=report.json",
"lint": "eslint . --ext .js",
"lint-fix": "eslint --fix . --ext .js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/akashchouhan16/nodeCache.git"
},
"keywords": [
"cache",
"storage",
"node-cache",
"nodecache",
"in-memory",
"node.js cache",
"cache with ttl"
],
"author": {
"name": "Akash Chouhan",
"email": "akash.c1500@gmail.com",
"github": "akashchouhan16"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/akashchouhan16/nodeCache/issues"
},
"homepage": "https://github.com/akashchouhan16/nodeCache#readme",
"devDependencies": {
"eslint": "^8.45.0",
"eslint-plugin-jest": "^27.2.3",
"husky": "^9.0.10",
"jest": "^29.5.0"
}
}