-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.04 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
{
"name": "rxjs-socket.io",
"version": "0.2.0",
"description": "wraps socket.io-client into replay subjects called ioEvents",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"test-dev": "karma start karma.conf.js",
"test": "karma start karma.conf.js --single-run",
"posttest": "rm -rf spec/",
"prebuild": "npm run test",
"build": "tsc"
},
"author": "[email protected]",
"license": "ISC",
"dependencies": {
"rxjs": "^5.0.1",
"socket.io-client": "^1.7.2"
},
"devDependencies": {
"@types/es6-shim": "^0.31.32",
"@types/jasmine": "^2.5.38",
"@types/socket.io-client": "^1.4.29",
"jasmine-core": "^2.5.2",
"karma": "^1.3.0",
"karma-cli": "^1.0.1",
"karma-jasmine": "^1.1.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-typescript": "^3.0.1",
"socket.io": "^1.7.2",
"typescript": "^2.1.4"
},
"bugs": {
"url": "https://gitlab.com/moshmage/rxjs-socket.io/issues"
},
"repository": {
"url": "https://gitlab.com/moshmage/rxjs-socket.io/"
}
}