-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 2.63 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "node-cache-engine",
"version": "2.0.3",
"description": "High performing cache library (with cache replacement) for browser and node",
"keywords": [
"node",
"cache",
"high",
"performance",
"cache replacement",
"javascript cache",
"LRU cache"
],
"homepage": "https://github.com/benhurdavies/node-cache-engine#readme",
"bugs": {
"url": "https://github.com/benhurdavies/node-cache-engine/issues",
"email": "benhurdavies@gmail.com"
},
"type": "module",
"main": "./build/cjs/index.js",
"module": "./build/esm/index.js",
"types": "./build/esm/index.d.ts",
"exports": {
"types": "./build/esm/index.d.ts",
"import": "./build/esm/index.js",
"require": "./build/cjs/index.js"
},
"sideEffects": false,
"files": [
"build"
],
"author": "Benhur Davies",
"contributors": [
"René Simon <mail@rene-simon.eu>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/benhurdavies/node-cache-engine.git"
},
"engines": {
"node": ">=18.18.2",
"npm": ">=9.8.1"
},
"scripts": {
"start": "echo 'It is a lib. RTFM!'",
"dev": "npm start",
"test": "vitest run --coverage",
"build": "npm run build:clean && npm run build:esm && npm run build:cjs",
"build:clean": "rimraf ./build/** ; true",
"build:esm": "tsc --project tsconfig.build.json",
"build:cjs": "tsc --project tsconfig.build.cjs.json && npm run build:cjs:package",
"build:cjs:package": "echo '{\"type\":\"commonjs\"}' >> build/cjs/package.json",
"lint": "eslint --format gitlab .",
"lint:fix": "npm run lint -- --fix",
"prettify": "prettier --check .",
"prettify:fix": "prettier --write .",
"jscpd": "jscpd .",
"prepare": "husky install",
"validateChangelog": "changelog --latest-release",
"release": "release-it",
"hardUpdate": "rimraf ./node_modules ./package-lock.json ; npm i"
},
"devDependencies": {
"@release-it/keep-a-changelog": "^5.0.0",
"@stylistic/eslint-plugin": "^2.1.0",
"@types/node": "^20.12.11",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"@vitest/coverage-istanbul": "^1.6.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-formatter-gitlab": "^5.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"jscpd": "^3.5.10",
"keep-a-changelog": "^2.5.3",
"prettier": "^3.2.5",
"release-it": "^17.2.1",
"rimraf": "^5.0.7",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
}
}