-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
61 lines (61 loc) · 1.85 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
{
"name": "cachalot",
"version": "3.3.1",
"description": "Cache manager for nodejs with support different cache strategies",
"keywords": [
"cache",
"redis",
"read-through",
"refresh-ahead"
],
"license": "Apache-2.0",
"author": "Gajewski Dmitriy Yurevish <[email protected]>",
"files": [
"dist"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"repository": "https://github.com/Tinkoff/cachalot.git"
},
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"cz": "git-cz",
"clean": "rm -rf dist",
"build": "tsc",
"watch": "tsc -w",
"format": "prettier --write tests/**/*.ts src/*.ts src/**/*.ts",
"lint": "prettier -c tests/**/*.ts src/*.ts src/**/*.ts && eslint src tests --ext .ts --max-warnings 0",
"test": "npm run test:unit",
"test:unit": "jest --coverage --verbose --passWithNoTests",
"test:ci": "jest --coverage --verbose --passWithNoTests --coverageReporters=lcovonly",
"test:integration": "jest --config tests/jest.config.js --forceExit --detectOpenHandles --verbose",
"test:unit:watch": "jest --watch",
"prepublishOnly": "npm run build",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/ioredis": "^4.27.5",
"@types/jest": "^27.0.2",
"@types/memcached": "^2.2.7",
"@types/node": "^10.17.60",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"ioredis": "^4.27.9",
"jest": "^27.2.4",
"memcached": "^2.2.2",
"prettier": "^2.4.1",
"semantic-release": "^19.0.2",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3",
"uuid": "^8.3.2"
}
}