-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.79 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.79 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
48
49
50
51
52
53
54
55
56
{
"name": "redisproxy",
"version": "2.2.7",
"description": "This is a simple redis proxy intented to server a jsonp access or an socket-io real time proxy",
"main": "dist/index.js",
"scripts": {
"build": "npm run clean && npm run tsc",
"clean": "npx rimraf dist",
"coverage": "npx nyc --all -x=\"**/coverage/**\" -x=\"**/bin/**\" --reporter=html --reporter=cobertura --reporter=text --require ts-node/register npm run test",
"test": "node -r source-map-support/register ./node_modules/jasmine/bin/jasmine.js --config=./src/spec/support/jasmine.json",
"tsc": "./node_modules/typescript/bin/tsc",
"watch": "./node_modules/nodemon/bin/nodemon.js -w src --ext ts --exec 'npm run build && npm test'"
},
"keywords": [
"redis",
"proxy"
],
"author": "Loksly",
"license": "MIT",
"dependencies": {
"@types/cors": "^2.8.9",
"bloom.js": "^0.1.1",
"cas": "0.0.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"cryptr": "^6.0.2",
"express": "^4.17.1",
"jwt-simple": "^0.5.6",
"portfinder": "^1.0.28",
"redis": "^3.0.2",
"socket.io": "^2.3.0",
"tiny-json-http": "^7.2.2"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/compression": "^1.7.0",
"@types/cryptr": "^4.0.1",
"@types/express": "^4.17.9",
"@types/jasmine": "^3.6.2",
"@types/node": "^14.14.20",
"@types/redis": "^2.8.28",
"@types/serve-static": "^1.13.8",
"@types/socket.io": "^2.1.12",
"@types/socket.io-client": "^1.4.34",
"@types/supertest": "^2.0.10",
"jasmine": "^3.6.1",
"nodemon": "^2.0.4",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"socket.io-client": "^2.3.1",
"source-map-support": "^0.5.19",
"supertest": "^5.0.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
}
}