-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
34 lines (34 loc) · 910 Bytes
/
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
{
"name": "@serverless-dns/lfu-cache",
"version": "3.4.1",
"description": "Various LFU cache implementations",
"main": "lfu.js",
"type": "module",
"scripts": {
"lint": "eslint '**/*.{js,ts}' --quiet",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/serverless-dns/lfu-cache.git"
},
"author": "",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/serverless-dns/lfu-cache/issues"
},
"homepage": "https://github.com$/serverless-dns/lfu-cache#readme",
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.ts": "prettier --write"
},
"devDependencies": {
"eslint": "^8.9.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.4",
"prettier": "^2.5.1"
}
}