-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 970 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
{
"name": "@alanfilho184/kami-lru-cache",
"version": "1.2.0",
"description": "Simple LRU-Cache, created for my personal projects",
"main": "dist/index.js",
"scripts": {
"start": "npx tsc && node dist/index.js",
"build": "npx tsc",
"test": "jest --forceExit",
"build-test": "npx tsc && jest --forceExit"
},
"keywords": [
"cache",
"memory",
"lru",
"autodelete",
"flexible",
"simple"
],
"author": "alanfilho184",
"license": "ISC",
"devDependencies": {
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^28.1.5",
"@types/node": "^18.0.4",
"ts-jest": "^28.0.6",
"typescript": "^4.7.4"
},
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/alanfilho184/Kami-LRU-Cache.git"
},
"bugs": {
"url": "https://github.com/alanfilho184/Kami-LRU-Cache/issues"
},
"homepage": "https://github.com/alanfilho184/Kami-LRU-Cache#readme"
}