forked from isaacs/node-lru-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.91 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
{
"name": "lru-cache2",
"version": "6.0.0",
"description": "A cache object that deletes the least-recently-used items.",
"keywords": [
"mru",
"lru",
"cache"
],
"homepage": "https://github.com/isaacs/node-lru-cache#readme",
"bugs": {
"url": "https://github.com/isaacs/node-lru-cache/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/isaacs/node-lru-cache.git"
},
"license": "ISC",
"author": "Isaac Z. Schlueter <i@izs.me>",
"main": "index.js",
"directories": {
"test": "test"
},
"files": [
"index.js"
],
"scripts": {
"test": "jest",
"npm:publish": "npm publish",
"npm:publish:lerna": "lerna publish --yes --bump patch",
"preversion": "npm test",
"prepublishOnly": "yarn run prepublishOnly:update && yarn run test",
"prepublishOnly:check-bin": "ynpx --quiet @yarn-tool/check-pkg-bin",
"prepublishOnly:update": "yarn run ncu && yarn run sort-package-json",
"postpublish": "yarn run postpublish:changelog && yarn run postpublish:git:commit && yarn run postpublish:git:tag && yarn run postpublish:git:push",
"postpublish:changelog": "ynpx --quiet @yarn-tool/changelog && git add ./CHANGELOG.md",
"postpublish:git:commit": "git commit -m \"chore(release): publish\" . & echo postpublish:git:commit",
"postpublish:git:push": "git push --follow-tags",
"postpublish:git:tag": "ynpx --quiet @yarn-tool/tag",
"ncu": "yarn-tool ncu -u",
"snap": "jest -u",
"sort-package-json": "yarn-tool sort"
},
"dependencies": {
"@types/yallist": "*",
"yallist": "^4.0.0"
},
"devDependencies": {
"@bluelovers/tsconfig": "^1.0.20",
"@types/benchmark": "^1.0.33",
"@types/jest": "^26.0.9",
"@types/lru-cache": "^5.1.0",
"@types/node": "^14.0.27",
"@types/yallist": "^3.0.1",
"benchmark": "^2.1.4",
"jest": "^26.2.2",
"ts-jest": "^26.1.4"
},
"engines": {
"node": ">=10"
}
}