-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.64 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
73
74
75
76
77
{
"name": "map-lru",
"version": "2.1.0",
"description": "\"Least Recently Used\" (LRU) cache compatible to ES6 Map",
"keywords": [
"cache",
"caching",
"fast",
"least",
"lru",
"map",
"recently",
"used"
],
"homepage": "https://github.com/commenthol/map-lru#readme",
"bugs": {
"url": "https://github.com/commenthol/map-lru/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/commenthol/map-lru.git"
},
"license": "Unlicense",
"author": "commenthol <commenthol@gmail.com>",
"type": "module",
"exports": {
"./package.json": "./package.json",
".": {
"import": "./src/index.js",
"require": "./lib/index.cjs",
"types": "./types/index.d.ts"
}
},
"main": "./lib/index.cjs",
"module": "./src/index.js",
"types": "./types/index.d.ts",
"directories": {
"test": "test"
},
"files": [
"lib",
"src",
"types"
],
"scripts": {
"all": "npm-run-all clean lint build test types",
"build": "rollup -c",
"clean": "rimraf coverage types",
"coverage": "c8 -r text -r html mocha",
"coveralls": "npm test && c8 report --reporter=text-lcov | coveralls",
"lint": "standard -v --fix **/*.js",
"test": "c8 -r text mocha",
"types": "tsc"
},
"babel": {
"presets": [
"env"
]
},
"mocha": {
"checkLeaks": true,
"color": true
},
"devDependencies": {
"c8": "^10.1.2",
"coveralls": "^3.1.1",
"mocha": "^10.7.3",
"npm-run-all2": "^6.2.2",
"rimraf": "^6.0.1",
"rollup": "^4.20.0",
"standard": "^17.1.0",
"typescript": "^5.5.4"
},
"engines": {
"node": ">=12"
}
}