-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.67 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
{
"name": "faye",
"description": "Simple pub/sub messaging for the web",
"homepage": "https://faye.jcoglan.com",
"author": "James Coglan <[email protected]> (http://jcoglan.com/)",
"keywords": [
"comet",
"websocket",
"pubsub",
"bayeux",
"ajax",
"http"
],
"license": "Apache-2.0",
"version": "1.4.0",
"engines": {
"node": ">=0.8.0"
},
"main": "src/faye_node",
"browser": "src/faye_browser",
"dependencies": {
"asap": "*",
"csprng": "*",
"faye-websocket": ">=0.9.1",
"safe-buffer": "*",
"tough-cookie": "*",
"tunnel-agent": "*"
},
"devDependencies": {
"jstest": "~1.0.0",
"mime": "~1.2.0",
"permessage-deflate": ">=0.1.0",
"promises-aplus-tests": "~2.1.0",
"webpack": "*",
"webpack-cli": "*",
"imports-loader": "<1.0.0"
},
"scripts": {
"start": "webpack --watch",
"test": "find spec -name '*_spec.js' | xargs jstest",
"promise": "promises-aplus-tests src/util/promise.js"
},
"repository": {
"type": "git",
"url": "git://github.com/faye/faye.git"
},
"bugs": "https://github.com/faye/faye/issues"
}