-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.06 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.06 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
{
"name": "kroncache",
"version": "0.0.14",
"description": "kroncache node client",
"main": "./lib/index.js",
"scripts": {
"build": "tsc -p ./tsconfig.json",
"watch": "tsc -p ./tsconfig.json -w",
"test": "jest",
"prepublish": "yarn test",
"prebuild": "yarn test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Akumzy/kroncache-node.git"
},
"keywords": [
"cache",
"cron",
"database"
],
"author": "Akuma Isaac Akuma <akumaisaacakuma@gmail.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Akumzy/kroncache-node/issues"
},
"homepage": "https://github.com/Akumzy/kroncache-node#readme",
"dependencies": {
"date.js": "^0.3.3",
"human-interval": "^2.0.1",
"ms": "^2.1.2",
"uuid": "^8.3.1",
"ws": "^7.4.0"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/ms": "^0.7.31",
"@types/uuid": "^8.3.0",
"@types/ws": "^7.4.0",
"jest": "^27.3.1",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
},
"files": [
"lib"
]
}