-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.5 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.5 KB
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
{
"name": "node-tagged-cache",
"description": "In-memory, performance-targeted caching with tagging support.",
"version": "0.0.4",
"main": "dist/index.js",
"types": "types/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/xobotyi/node-tagged-cache.git"
},
"bugs": {
"url": "https://github.com/xobotyi/node-tagged-cache/issues"
},
"engines": {
"node": ">=10"
},
"homepage": "https://github.com/xobotyi/node-tagged-cache",
"author": "Anton Zinovyev",
"license": "MIT",
"tags": [
"node",
"tagged",
"cache",
"inmemory-cache",
"memcached",
"inmemory",
"memory",
"internal",
"local"
],
"scripts": {
"lint": "eslint ./**/*.{ts,tsx,js,jsx}",
"lint:fix": "yarn lint --fix",
"lint:types": "tsc --noEmit",
"cleanup": "rimraf ./dist",
"test": "jest --coverage=false",
"test:coverage": "jest --coverage",
"push-codacy-coverage": "cat ./coverage/lcov.info | codacy-coverage -p ."
},
"dependencies": {
"rfdc": "^1.3.0"
},
"devDependencies": {
"@types/jest": "^26.0.22",
"@types/node": "^14.14.39",
"@types/rfdc": "^1.1.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.24.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.4",
"typescript": "^4.2.4"
}
}