-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
64 lines (64 loc) · 1.77 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": "cacheables",
"version": "2.0.0",
"description": "A simple in-memory cache written in Typescript with automatic cache invalidation and an elegant syntax.",
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"types": "dist/mjs/index.d.ts",
"exports": {
".": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/mjs/index.d.ts"
}
},
"scripts": {
"size": "size-limit",
"test": "jest",
"test:watch": "jest --watch",
"typecheck": "tsc --noEmit",
"eslint": "eslint --fix src/**/*.ts",
"prepublish": "npm run eslint && npm run typecheck && npm test && npm run build",
"build": "rimraf dist && tsc -p tsconfig.mjs.json && tsc -p tsconfig.cjs.json && tsx ./fixup-packages.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/grischaerbe/cacheables.git"
},
"size-limit": [
{
"path": "./dist/mjs/index.js"
}
],
"keywords": [
"node",
"browser",
"cache",
"in-memory",
"typescript",
"cacheable",
"cacheables"
],
"author": "Grischa Erbe <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/grischaerbe/cacheables/issues"
},
"homepage": "https://github.com/grischaerbe/cacheables#readme",
"devDependencies": {
"@size-limit/preset-small-lib": "^11.1.4",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "^3.3.1",
"rimraf": "^5.0.7",
"size-limit": "^11.1.4",
"ts-jest": "^29.1.4",
"tsx": "^4.11.2",
"typescript": "^5.4.5"
}
}