-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·87 lines (87 loc) · 2.35 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "redistore",
"version": "1.3.18",
"description": "redis simple document storage api",
"main": "dist/index.js",
"directories": {
"lib": "dist",
"test": "tests"
},
"dependencies": {
"@hapi/basic": "^5.x.x",
"@hapi/boom": "^9.x.x",
"@hapi/hapi": "^19.0.x",
"@hapi/hoek": "^9.x.x",
"@hapi/inert": "^6.x.x",
"@hapi/lab": "^22.x.x",
"@hapi/nes": "^12.x.x",
"@hapi/vision": "^6.x.x",
"@hapi/wreck": "^17.x.x",
"bcrypt": "^3.x.x",
"bluebird": "^3.x.x",
"cuid": "^2.x.x",
"dotenv": "^8.x.x",
"flat": "^5.x.x",
"hapi-auth-jwt2": "^8.x.x",
"hapi-plugin-websocket": "^2.0.14",
"hapi-swagger": "^12.x.x",
"json-stable-stringify": "^1.x.x",
"jsonwebtoken": "^8.x.x",
"node-redis-pubsub": "^4.x.x",
"q": "^1.x.x",
"redis-js": "^0.x.x",
"redis-mock": "^0.x.x",
"redlock": "^4.x.x",
"reflect-metadata": "^0.x.x",
"request-ip": "^2.x.x",
"sha1": "^1.x.x",
"susie": "^3.0.0",
"thunk-redis": "^2.x.x"
},
"devDependencies": {
"@hapi/joi": "17.x.x",
"@hapi/joi-date": "2.x.x",
"@types/bluebird": "^3.x.x",
"@types/hapi__hapi": "^19.0.0",
"@types/hapi__joi": "^16.0.8",
"@types/jsonwebtoken": "^8.x.x",
"@types/node": "^12.x.x",
"blipp": "^4.x.x",
"chai": "^4.x.x",
"chai-http": "^4.x.x",
"eslint": "^6.x.x",
"eslint-config-airbnb-base": "^14.x.x",
"eslint-plugin-import": "^2.x.x",
"hapi-joi-decorators": "^0.x.x",
"mocha": "^6.x.x",
"mocha-lcov-reporter": "^1.x.x",
"nodemon": "^2.x.x",
"prettier": "^1.x.x",
"ts-node": "^8.x.x",
"tslint": "^5.x.x",
"typescript": "^3.x.x",
"yeps": "^1.x.x",
"yeps-error": "^1.x.x",
"yeps-server": "^1.x.x"
},
"peerDependencies": {},
"scripts": {
"test": "mocha",
"build": "tsc",
"pub": "tsc && yarn publish --ignore-scripts ",
"example": "ts-node examples/testjwt.ts",
"redistore_example": "ts-node src/example.ts",
"test-server": "node dist/server.js",
"dev": "ts-node server.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reactive-technology/redistore.git"
},
"author": "Benamar BELARBI",
"license": "ISC",
"bugs": {
"url": "https://github.com/reactive-technology/redistore/issues"
},
"homepage": "https://github.com/reactive-technology/redistore#readme"
}