-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 899 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
{
"name": "phemcache",
"version": "3.0.0",
"description": "A configurable ephemeral in-memory cache",
"main": "dist/cache.js",
"types": "dist/cache.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist/ && tsc && rimraf dist/**.test.**",
"test": "jest",
"lint": "eslint --ext .ts src"
},
"keywords": [
"cache",
"ephemeral cache",
"timed cache"
],
"author": "dillonstreator",
"repository": {
"type": "git",
"url": "https://github.com/dillonstreator/phemcache.git"
},
"homepage": "https://github.com/dillonstreator/phemcache",
"license": "MIT",
"devDependencies": {
"@types/jest": "^28.1.6",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"eslint": "^8.22.0",
"jest": "^28.1.3",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4"
}
}