-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.47 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
{
"name": "adequate-cache",
"version": "1.0.1",
"description": "Entirely adequate node.js in-memory cache, with lru and ttl support. Typings included.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepublishOnly": "npm run build",
"docs": "typedoc",
"build": "tsc",
"test": "jest",
"watch": "jest --watchAll",
"lint": "eslint ./src",
"release": "release-it"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"import-sort-style-module": "^6.0.0",
"jest": "^27.2.5",
"prettier": "latest",
"prettier-plugin-import-sort": "0.0.7",
"release-it": "^14.11.6",
"ts-jest": "^27.0.5",
"typedoc": "^0.22.5",
"typescript": "^4.4.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/panta82/adequate-cache.git"
},
"author": "Ivan Pantic",
"license": "MIT",
"bugs": {
"url": "https://github.com/panta82/adequate-cache/issues"
},
"homepage": "https://github.com/panta82/adequate-cache#readme",
"keywords": [
"cache",
"lru",
"ttl",
"memory",
"in-memory",
"adequate-cache",
"local",
"kv",
"storage"
],
"importSort": {
".ts, .tsx": {
"style": "module",
"parser": "typescript"
},
".js, .jsx": {
"style": "module"
}
}
}