-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.17 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
{
"name": "@neophi/sieve-cache",
"version": "1.5.0",
"description": "Performant Map based cache using the SIEVE algorithm for eviction.",
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"exports": {
".": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js"
}
},
"types": "./dist/mjs/index.d.ts",
"sideEffects": false,
"repository": {
"type": "git",
"url": "git://github.com/NeoPhi/sieve-cache.git"
},
"engines": {
"node": ">=18"
},
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist",
"build": "tsc && tsc --project tsconfig-cjs.json",
"postbuild": "./tools/packages.sh",
"build:test": "tsc --project tsconfig-test.json",
"pretest": "npm run clean && npm run build:test",
"test": "env NODE_ENV=test node --experimental-test-coverage --test dist/test",
"prepare": "npm run clean && npm run build"
},
"keywords": [
"sieve",
"cache"
],
"author": "Daniel Rinehart <[email protected]>",
"license": "MIT",
"devDependencies": {
"@tsconfig/node20": "^20.1.2",
"@types/node": "^20.11.28",
"rimraf": "^5.0.5",
"typescript": "^5.4.2"
}
}