-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 908 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
{
"name": "@millihq/etag-cache",
"version": "1.1.0",
"type": "commonjs",
"description": "Simple in-memory caching solution that supports revalidation via eTag and time-to-live (TTL)",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc --project tsconfig.build.json",
"test": "jest",
"release": "release-it",
"release:ci": "release-it --no-increment --no-git.push --ci"
},
"keywords": [
"cache",
"TTL",
"eTag"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/milliHQ/etag-cache.git"
},
"devDependencies": {
"@release-it/keep-a-changelog": "^3.1.0",
"@types/jest": "^28.1.7",
"jest": "^28.1.3",
"release-it": "^15.3.0",
"ts-jest": "^28.0.8",
"typescript": "^4.7.4"
},
"files": [
"dist/**"
],
"publishConfig": {
"access": "public"
}
}