-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 933 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 933 Bytes
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
{
"name": "angularjs-websocket-transport",
"description": "A demonstration that replaces the AngularJS $http service with a WebSocket transport layer.",
"keywords": ["AngularJS", "$http", "WebSocket"],
"version": "0.0.4",
"homepage": "https://github.com/exratione/angularjs-websocket-transport",
"author": "Reason <reason@exratione.com>",
"engines": {
"node": ">= 0.10"
},
"dependencies": {
"express": "3.x.x",
"engine.io": ">= 0.7.10",
"primus": ">= 1.4.4"
},
"devDependencies": {
"karma": ">= 0.10"
},
"scripts": {
"start": "node src-example/server/expressApp.js",
"test": "karma start karma.conf.js"
},
"main": "./index",
"repository" : {
"type": "git",
"url": "https://github.com/exratione/angularjs-websocket-transport"
},
"licenses" : [{
"type": "MIT",
"url": "https://github.com/exratione/angularjs-websocket-transport/raw/master/LICENSE"
}]
}