-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.67 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.67 KB
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
{
"name": "run-cache",
"version": "1.6.1",
"description": "A dependency-free, lightweight runtime caching library with TTL support and automatic value regeneration",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"unpkg": "dist/index.min.js",
"jsdelivr": "dist/index.min.js",
"scripts": {
"build": "tsc && npm run build:min",
"build:min": "esbuild dist/index.js --bundle --minify --outfile=dist/index.min.js --format=esm --platform=node",
"test": "jest",
"test:debug": "jest --detectOpenHandles --forceExit",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/**/*.ts",
"prepare": "npm run build && npm run lint",
"lint:fix": "eslint src/**/*.ts --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/helloscoopa/run-cache.git"
},
"keywords": [
"cache",
"ttl",
"runtime",
"memory-cache",
"caching",
"lightweight"
],
"author": "helloscoopa",
"license": "MIT",
"bugs": {
"url": "https://github.com/helloscoopa/run-cache/issues"
},
"homepage": "https://github.com/helloscoopa/run-cache#readme",
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/node": "^18.16.3",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"esbuild": "^0.20.2",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.2",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4",
"uuid": "^11.1.0"
},
"files": [
"dist/**/*"
]
}