-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.38 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
{
"name": "@wymp/cache",
"version": "1.3.0",
"description": "A simple, in-memory cache for javascript projects",
"main": "dist/index.js",
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc",
"check": "tsc --noEmit",
"test": "jest",
"prepack": "rm -Rf dist; tsc",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+ssh://github.com:wymp/ts-cache.git"
},
"keywords": [
"cache",
"memcached",
"redis"
],
"author": "Openfinance Developers",
"license": "ISC",
"bugs": {
"url": "https://github.com/wymp/ts-cache/issues"
},
"homepage": "https://github.com/wymp/ts-cache#readme",
"dependencies": {
"@wymp/ts-simple-interfaces": "^0.5.1 || ^0.6.0 || ^0.7.1"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.11.0",
"@wymp/ts-simple-interfaces-testing": "^0.5.0 || ^0.6.0 || ^0.7.1",
"husky": "^8.0.0",
"jest": "^29.7.0",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
},
"prettier": {
"printWidth": 100,
"trailingComma": "es5"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"jest": {
"roots": [
"<rootDir>/tests"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
}
},
"publishConfig": {
"access": "public"
}
}