forked from dir01/ts-memoize-decorator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.37 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
{
"name": "ts-memoize-decorator",
"version": "1.1.0",
"description": "Simple memoization decorator for TypeScript",
"repository": {
"url": "https://github.com/dir01/ts-memoize-decorator"
},
"main": "dist/index.js",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"lint": "npm run lint:tsc && npm run lint:prettier:fix && npm run lint:eslint:fix",
"lint:prettier:fix": "prettier ./src/*.ts --write",
"lint:eslint:fix": "eslint ./src/*.ts --fix",
"lint:tsc": "tsc -p tsconfig.json --noEmit",
"test": "jest",
"test:coverage": "npm run test -- --coverage",
"prepublish": "npm run build"
},
"files": [
"dist/*"
],
"keywords": [
"typescript",
"memoize",
"decorator"
],
"author": "Andrew Zhu",
"license": "ISC",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^2.12.0",
"@typescript-eslint/parser": "^2.12.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.2",
"prettier": "^1.19.1"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.7.4",
"@babel/plugin-proposal-optional-chaining": "^7.7.5",
"@babel/preset-env": "^7.7.7",
"@babel/preset-typescript": "^7.7.7",
"@types/jest": "^24.0.24",
"@types/node": "^12.12.21",
"jest": "^24.9.0",
"node-lfu-cache": "^5.0.0",
"typescript": "^3.7.4"
}
}