-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 1.87 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "memoize-methods",
"version": "1.0.1",
"description": "Memoize methods of a given object",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/index.js",
"lib/index.d.ts"
],
"scripts": {
"test": "mocha --require ts-node/register --recursive --timeout 10000 test/memoize-methods-test.ts",
"build": "tsc",
"prepublishOnly": "npm run build",
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,json}": [
"npm run lint",
"git add"
],
"*.{md,yml}": [
"prettier --write",
"git add"
]
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 4,
"semi": false,
"singleQuote": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/Vunovati/memoize-methods.git"
},
"keywords": [
"cache",
"memoize",
"proxy",
"weakmap",
"typescript",
"async"
],
"author": "Vladimir Adamić",
"license": "MIT",
"bugs": {
"url": "https://github.com/Vunovati/memoize-methods/issues"
},
"homepage": "https://github.com/Vunovati/memoize-methods#readme",
"devDependencies": {
"@types/chai": "^4.2.7",
"@types/mocha": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^2.17.0",
"@typescript-eslint/parser": "^2.17.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^7.0.1",
"lint-staged": "^10.0.1",
"mocha": "^9.0.3",
"prettier": "2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}