-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.22 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
{
"name": "@m4x1m1l14n/cache",
"version": "1.2.0",
"description": "Lightweight in-memory isomorphic cache implementation with TTL for browser & Node JS written in TypeScript",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"build": "rm -rf dist && tsc -p tsconfig.src.json",
"lint": "eslint .",
"lint-fix": "npm run lint -- --fix",
"format": "prettier --write . --no-editorconfig --log-level silent"
},
"keywords": [
"nodejs",
"typescript",
"browser",
"cache",
"memcache",
"ttl"
],
"author": "m4x1m1l14n",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/m4x1m1l14n/cache-js.git"
},
"bugs": {
"url": "https://github.com/m4x1m1l14n/cache-js/issues"
},
"homepage": "https://github.com/m4x1m1l14n/cache-js",
"devDependencies": {
"@types/detect-node": "^2.0.2",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.6",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
},
"dependencies": {
"detect-node": "^2.1.0"
}
}