-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.13 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
{
"name": "lru-cache-idb",
"version": "0.5.1",
"description": "A least-recently-used (LRU) cache for web applications based on IndexedDB.",
"type": "module",
"types": "./dist/cache.d.ts",
"scripts": {
"build": "del-cli dist && tsc",
"prepack": "npm run build",
"test": "ava",
"build_test": "npm run build && npm run test",
"docs": "npx typedoc ./src/cache.ts"
},
"exports": {
".": {
"import": {
"types": "./dist/cache.d.ts",
"default": "./dist/cache.js"
}
}
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"keywords": ["lru", "lrucache", "lru-cache", "cache", "indexeddb"],
"author": "cnoelle",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cnoelle/lru-cache-idb.git"
},
"bugs": {
"url": "https://github.com/cnoelle/lru-cache-idb/issues"
},
"homepage": "https://github.com/cnoelle/lru-cache-idb",
"devDependencies": {
"ava": "^6.1.3",
"del-cli": "^5.1.0",
"fake-indexeddb": "^6.0.0",
"typedoc": "^0.26.7",
"typescript": "^5.6.2"
},
"ava": {
"files": [
"test/**/*"
]
}
}