-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.22 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.22 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
{
"name": "ts-method-cache",
"version": "3.3.1",
"license": "Apache-2.0",
"author": {
"name": "Poul Kruijt",
"email": "poulkruijt@gmail.com"
},
"engines": {
"node": ">= 5.4.1"
},
"contributors": [
"nitsanavni"
],
"repository": {
"type": "git",
"url": "git@github.com:PierreDuc/ts-method-cache.git"
},
"homepage": "https://github.com/PierreDuc/ts-method-cache/",
"bugs": "https://github.com/PierreDuc/ts-method-cache/issues",
"description": "Data method caching logic based on TypeScript decorators",
"main": "dist/index.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"lint": "tslint --project .",
"test": "karma start"
},
"types": "dist/index.d.ts",
"private": false,
"keywords": [
"cache",
"memory",
"typescript",
"http",
"method",
"storage",
"session"
],
"peerDependencies": {
"typescript": ">=2.2.0"
},
"devDependencies": {
"@types/jasmine": "^3.3.12",
"@types/node": "^11.13.8",
"jasmine-core": "^3.4.0",
"karma": "^4.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^2.0.1",
"karma-typescript": "^4.0.0",
"prettier": "^1.17.0",
"tslint": "^5.16.0",
"typescript": "^3.4.5"
}
}