-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.08 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
{
"name": "fast-typescript-memoize",
"version": "1.2.1",
"description": "Fast memoization decorator and other helpers with 1st class support for Promises.",
"homepage": "https://github.com/dimikot/fast-typescript-memoize#readme",
"author": "Dimi Kot",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dimikot/fast-typescript-memoize.git"
},
"bugs": {
"url": "https://github.com/dimikot/fast-typescript-memoize/issues"
},
"keywords": [
"memoize",
"decorator",
"typescript",
"promise"
],
"main": "./dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "jest",
"profile": "node --expose-gc --inspect=0.0.0.0:9224 dist/__tests__/profile.js",
"clean": "rm -rf dist node_modules yarn.lock package-lock.json",
"deploy": "npm run build && npm test && npm publish"
},
"dependencies": {
"typescript": "^5.0.4"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"delay": "^4.4.1",
"jest": "^29.7.0",
"ts-jest": "^29.1.2"
}
}