forked from joshuaslate/type-cacheable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.38 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
{
"name": "type-cacheable",
"version": "4.1.0",
"description": "TypeScript-based caching decorators",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"jest": {
"transform": {
"^.+\\.ts?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(js?|ts?)$",
"moduleFileExtensions": [
"ts",
"js",
"node"
]
},
"scripts": {
"start": "node ./dist/index.js",
"test": "jest --coverage --runInBand",
"test:watch": "jest --watch --runInBand",
"build": "tsc",
"prepare": "npm run-script build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joshuaslate/type-cacheable.git"
},
"keywords": [
"cache",
"typescript",
"redis"
],
"author": "Joshua Anderson Slate",
"license": "MIT",
"bugs": {
"url": "https://github.com/joshuaslate/type-cacheable/issues"
},
"homepage": "https://github.com/joshuaslate/type-cacheable#readme",
"devDependencies": {
"@types/jest": "^25.1.0",
"@types/node": "^13.7.0",
"@types/serialize-javascript": "^1.5.0",
"ioredis": "^4.14.1",
"jest": "^25.1.0",
"node-cache": "^5.0.0",
"redis": "^3.0.2",
"ts-jest": "^25.0.0",
"typescript": "^3.7.4"
},
"dependencies": {
"@types/ioredis": "^4.14.4",
"@types/node-cache": "^4.1.3",
"@types/redis": "^2.8.13",
"serialize-javascript": "^3.0.0"
}
}