-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.4 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
{
"name": "rx-messaging",
"version": "0.1.1",
"description": "A channeled messaging protocol implementation on top of TCP/TLS server and socket to enable rxjs messaging",
"directories": {
"doc": "docs"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublish": "tsc",
"check": "tslint \"src/**/*.ts\" -t verbose",
"test": "npm run check && npm run stest && npm run mtest",
"stest": "jasmine-ts \"**/*.s-spec.ts\"",
"mtest": "jasmine-ts \"**/*.m-spec.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/svi3c/rx-messaging.git"
},
"keywords": [
"rx",
"rxjs",
"messaging",
"net",
"network",
"tcp",
"tls",
"node",
"typescript"
],
"author": "Sven Reglitzki <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/svi3c/rx-messaging/issues"
},
"homepage": "https://github.com/svi3c/rx-messaging#readme",
"dependencies": {
"json-socket": "^0.2.1",
"rxjs": "^5.2.0"
},
"devDependencies": {
"@types/jasmine": "^2.5.43",
"@types/json-socket": "^0.1.15",
"@types/node": "^7.0.7",
"jasmine-promise-wrapper": "^0.0.2",
"jasmine-spec-reporter": "^2.4.0",
"jasmine-ts": "^0.0.3",
"proxyquire": "^1.7.4",
"sinon": "^1.17.4",
"tslint": "^4.5.1",
"typescript": "^2.2.1"
},
"engines": {
"node": ">=6.0.0"
}
}