forked from graphile/crystal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 947 Bytes
/
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
{
"name": "@graphile/lru",
"version": "5.0.0-beta.3",
"description": "Extremely simple zero-dependencies ES6 LRU (you probably want lru-cache instead)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest -i",
"prepack": "tsc -b"
},
"repository": {
"type": "git",
"url": "git+https://github.com/graphile/crystal.git"
},
"keywords": [
"lru",
"graphile",
"graphite"
],
"author": "Benjie Gillam <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/graphile/crystal/issues"
},
"homepage": "https://github.com/graphile/crystal/tree/main/utils/lru",
"engines": {
"node": ">=14.17"
},
"files": [
"dist"
],
"dependencies": {
"tslib": "^2.6.2"
},
"devDependencies": {
"@types/jest": "^29.5.4",
"@types/node": "^20.5.7",
"jest": "^29.6.4",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}