-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
39 lines (39 loc) · 1.09 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
{
"name": "transitory",
"version": "1.2.1",
"description": "In-memory cache with high hit rates via LFU eviction. Supports time-based expiration, automatic loading and metrics.",
"license": "MIT",
"repository": "aholstenson/transitory",
"scripts": {
"test": "jest",
"ci": "npm run coverage && npm run lint",
"coverage": "jest --coverage",
"lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
"build": "tsc --module commonjs --target es5 --outDir dist/cjs && tsc --module es6 --target es6 --outDir dist/esm",
"prebuild": "rimraf dist",
"prepublishOnly": "npm run build"
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"engines": {
"node": ">=8.0.0"
},
"keywords": [
"cache",
"caching",
"lfu",
"lru"
],
"devDependencies": {
"@types/jest": "^24.0.11",
"@types/node": "^11.13.0",
"coveralls": "^3.0.3",
"jest": "^24.7.1",
"jest-config": "^24.7.1",
"rimraf": "^2.6.3",
"ts-jest": "^24.0.1",
"tslint": "^5.15.0",
"typescript": "^3.4.1"
},
"dependencies": {}
}