-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.57 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
{
"name": "@am92/redis",
"version": "2.0.3",
"description": "Redis SDK",
"sideEffects": false,
"types": "dist/index.d.ts",
"module": "dist/index.js",
"main": "dist/index.js",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"scripts": {
"compile": "tsc",
"build:clean": "rm -rf ./dist",
"build": "npm-run-all build:clean compile",
"test": "echo 'Error: no test specified'",
"preversion": "npm-run-all build test",
"version": "npm-run-all generate:docs commit:docs",
"postversion": "git push && git push --tags && npm run publish:pkg",
"publish:pkg": "npm publish",
"generate:docs": "npx compodoc -p tsconfig.json",
"commit:docs": "git add docs && git commit -m 'Docs Updated'"
},
"repository": "[email protected]:heliumtank92/am92-redis.git",
"homepage": "https://heliumtank92.github.io/am92-redis",
"dependencies": {
"redis": "^4.6.4"
},
"devDependencies": {
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@compodoc/compodoc": "^1.1.21",
"@types/node": "^20.3.2",
"npm-run-all": "^4.1.5",
"typescript": "^5.1.3"
},
"contributors": [
{
"name": "Ankit Gandhi",
"email": "[email protected]",
"url": "https://github.com/ankitgandhi452"
},
{
"name": "Mehul Agarwal",
"email": "[email protected]",
"url": "https://github.com/agarwalmehul"
}
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"keywords": [
"redis",
"node",
"module",
"cache",
"js",
"javascript",
"node-redis"
]
}