-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
77 lines (77 loc) · 1.79 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "tlru",
"version": "1.0.2",
"description": "Time aware least recently used (TLRU) cache for Node",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"keywords": [
"LRU",
"cache",
"typescript",
"lru-cache",
"ttl",
"ttu",
"time-aware",
"setTimeout",
"tlru",
"expires",
"receptacle"
],
"files": [
"dist/*.js",
"dist/*.ts"
],
"engines": {
"node": ">=12.1"
},
"scripts": {
"test": "node --expose-gc node_modules/jest/bin/jest --detectOpenHandles --logHeapUsage --coverage",
"lint": "eslint \"{src,__tests__}/**/*.ts\" --ignore-path .gitignore",
"build": "tsc",
"postversion": "git push origin master --tags",
"prepublishOnly": "tsc && npm test"
},
"directories": {
"lib": "src",
"test": "__tests__"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tinovyatkin/tlru.git"
},
"author": "Konstantin Vyatkin <tino@vtkn.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tinovyatkin/tlru/issues"
},
"homepage": "https://github.com/tinovyatkin/tlru#readme",
"devDependencies": {
"@babel/preset-env": "7.22.20",
"@babel/preset-typescript": "7.23.0",
"@types/jest": "29.5.5",
"@types/node": "18.17.2",
"@typescript-eslint/eslint-plugin": "6.9.0",
"@typescript-eslint/parser": "6.9.0",
"eslint": "8.51.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-prettier": "5.0.0",
"jest": "29.7.0",
"jest-junit": "16.0.0",
"prettier": "3.0.3",
"typescript": "5.2.2"
},
"dependencies": {
"fun-dispatcher": "^1.2.6"
},
"jest": {
"collectCoverage": true,
"verbose": true,
"coverageReporters": [
"text",
"json",
"cobertura",
"lcov"
],
"testEnvironment": "node"
}
}