-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.92 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.92 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "doso-node",
"version": "0.0.1",
"description": "Document Socket - Node.js server",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "echo 1",
"test": "mocha -r ts-node/register src/**/*.spec.ts",
"test:watch": "mocha --watch --watch-extensions ts -r ts-node/register src/**/*.spec.ts",
"test-one:watch": "mocha --watch --watch-extensions ts -r ts-node/register ./src/index.spec.ts $1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zoil/doso-node.git"
},
"keywords": [
"SockJS",
"websocket",
"live",
"subscription",
"data",
"database"
],
"author": "Zoltan Jano <zoltan.jano@gmail.com> (https://github.com/zoil)",
"license": "MIT",
"bugs": {
"url": "https://github.com/zoil/doso-node/issues"
},
"homepage": "https://github.com/zoil/doso-node#readme",
"devDependencies": {
"@types/async": "^2.0.46",
"@types/chai": "^4.1.4",
"@types/chai-spies": "^1.0.0",
"@types/ejson": "^2.1.2",
"@types/invariant": "^2.2.29",
"@types/mocha": "^5.2.5",
"@types/mocha-steps": "^1.1.1",
"@types/node": "*",
"@types/redis": "^2.8.3",
"@types/sha1": "^1.1.1",
"@types/shortid": "0.0.29",
"@types/sockjs": "^0.3.31",
"chai": "^4.1.2",
"chai-spies": "^1.0.0",
"detect-port": "^1.2.1",
"mocha": "^4.0.1",
"mocha-steps": "^1.1.0",
"prettier-eslint": "^8.2.2",
"redis-js": "^0.1.2",
"ts-node": "^7.0.0",
"tslint": "^5.8.0",
"typescript": "^3.0.1"
},
"dependencies": {
"async": "^2.6.0",
"async-redis": "^1.1.4",
"chalk": "^2.3.1",
"doso-protocol": "^0.0.1",
"ejson": "^2.1.2",
"invariant": "^2.2.2",
"inversify": "^4.13.0",
"redis": "^2.8.0",
"redis-commands": "^1.3.5",
"reflect-metadata": "^0.1.10",
"sha1": "^1.1.1",
"shortid": "^2.2.8",
"sockjs": "^0.3.18"
}
}