forked from insidewhy/rxjs-websockets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.08 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
{
"name": "rxjs-websockets",
"version": "4.0.0",
"description": "rxjs 5 websockets library, ideal for use with angular 2",
"main": "lib/index.js",
"typings": "lib/index",
"repository": {
"type": "git",
"url": "git://github.com/ohjames/rxjs-websockets.git"
},
"keywords": [
"angular2",
"rxjs",
"websocket"
],
"scripts": {
"build": "tsc -p src",
"build:watch": "tsc -w -p src",
"test": "npm run build && npm run mocha",
"watch": "concurrently 'npm run build:watch' 'npm run mocha:watch'",
"prepare": "npm run build",
"mocha": "mocha lib/*.spec.js",
"mocha:watch": "npm run mocha -- -w"
},
"author": "James Pike <[email protected]>",
"license": "ISC",
"peerDependencies": {
"rxjs": "^5.0.1"
},
"devDependencies": {
"@types/chai": "^4.0.1",
"@types/mocha": "^2.2.41",
"@types/sinon": "^2.3.3",
"@types/sinon-chai": "^2.7.28",
"chai": "^4.1.0",
"concurrently": "^3.5.0",
"mocha": "^3.4.2",
"rxjs": "^5.0.1",
"sinon": "^3.2.1",
"sinon-chai": "^2.13.0",
"typescript": "^2.1.6"
}
}