-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.29 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
{
"name": "@croct/cache",
"version": "0.0.0-dev",
"description": "An abstraction layer for caching.",
"author": {
"name": "Croct",
"email": "lib+cache-js@croct.com",
"url": "https://github.com/croct-tech/cache-js"
},
"license": "MIT",
"keywords": [
"croct",
"caching",
"typescript"
],
"types": "index.d.ts",
"main": "index.js",
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/croct-tech/cache-js.git"
},
"bugs": {
"url": "https://github.com/croct-tech/cache-js/issues"
},
"homepage": "https://github.com/croct-tech/cache-js",
"scripts": {
"lint": "eslint 'src/**/*.ts' 'test/**/*.ts'",
"test": "jest -c jest.config.js --coverage",
"validate": "tsc --noEmit",
"build": "tsc -p tsconfig.build.json && cp package.json build/"
},
"dependencies": {
"@croct/time": "^0.10.0",
"@croct/json": "^2.0.0",
"@croct/logging": "^0.2.2",
"node-object-hash": "^3.0.0"
},
"devDependencies": {
"@croct/eslint-plugin": "^0.7.0",
"@types/jest": "^29.0.0",
"@types/object-hash": "^3.0.0",
"@typescript-eslint/parser": "^6.0",
"eslint": "^8.8",
"jest": "^29.0.0",
"ts-jest": "^29.0.0",
"typescript": "^5.0.0"
},
"files": [
"**/*.js",
"**/*.ts"
]
}