-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.32 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.32 KB
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "fast-memory-cache",
"description": "Simple in-memory cache implementation",
"version": "3.0.0",
"author": "Konstantin Ikonnikov <ikokostya@gmail.com>",
"contributors": [
{
"name": "Dulin Marat",
"email": "mdevils@yandex.ru"
}
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/mdevils"
},
{
"type": "patreon",
"url": "https://patreon.com/mdevils"
}
],
"repository": {
"type": "git",
"url": "https://github.com/mdevils/fast-memory-cache"
},
"bugs": "https://github.com/mdevils/fast-memory-cache/issues",
"keywords": [
"memory",
"cache"
],
"main": "./dist/commonjs/index.js",
"scripts": {
"lint": "eslint src",
"test": "jest",
"build": "tshy && flowgen --add-flow-header dist/commonjs/index.d.ts -o dist/commonjs/index.js.flow",
"prepublishOnly": "npm run build",
"release": "standard-version"
},
"files": [
"dist",
"src",
"LICENSE"
],
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@types/jest": "^29.5.14",
"eslint": "^9.23.0",
"eslint-config-prettier": "^10.1.1",
"flowgen": "^1.21.0",
"husky": "^4.3.8",
"prettier": "^3.5.3",
"standard-version": "^9.5.0",
"ts-jest": "^29.3.1",
"tshy": "^3.0.2",
"typescript": "^5.8.2",
"typescript-eslint": "^8.29.0"
},
"type": "module",
"tshy": {
"exports": {
"./package.json": "./package.json",
".": "./src/index.ts"
},
"selfLink": false
},
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/commonjs/index.d.ts",
"default": "./dist/commonjs/index.js"
}
}
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"subject-case": [
2,
"never",
[
"start-case",
"pascal-case"
]
]
}
},
"types": "./dist/commonjs/index.d.ts",
"module": "./dist/esm/index.js"
}