forked from faye/faye
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (102 loc) · 4.6 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{ "name" : "faye"
, "description" : "Simple pub/sub messaging for the web"
, "homepage" : "http://faye.jcoglan.com"
, "author" : "James Coglan <[email protected]> (http://jcoglan.com/)"
, "keywords" : ["comet", "websocket", "pubsub", "bayeux", "ajax", "http"]
, "license" : "MIT"
, "version" : "1.0.0"
, "engines" : {"node": ">=0.6.0"}
, "main" : "./node/faye-node"
, "browserify" : "./browser/faye-browser"
, "dependencies" : { "cookiejar": ""
, "csprng": ""
, "faye-websocket": ">=0.7.0"
}
, "devDependencies" : { "jstest": ""
, "mime": ""
, "promises-aplus-tests": ""
, "wake": ""
}
, "scripts" : { "build" : "./node_modules/.bin/wake"
, "test" : "node spec/node.js"
, "promise" : "promises-aplus-tests javascript/util/promise.js"
}
, "repository" : { "type" : "git"
, "url" : "git://github.com/faye/faye.git"
}
, "bugs" : "http://github.com/faye/faye/issues"
, "wake": {
"javascript": {
"sourceDirectory": "javascript",
"targetDirectory": "build",
"builds": {
"src": {"digest": false, "minify": false},
"min": {"digest": false, "minify": true, "sourceMap": "src", "tag": "suffix"}
},
"targets": {
"core": { "builds": {"src": false, "min": false},
"files": [
"_head",
"faye",
"util/class",
"util/event_emitter",
"util/namespace",
"util/promise",
"util/set",
"util/uri",
"error",
"mixins/deferrable",
"mixins/publisher",
"mixins/timeouts",
"mixins/logging",
"protocol/grammar",
"protocol/extensible",
"protocol/channel",
"protocol/envelope",
"protocol/publication",
"protocol/subscription",
"protocol/client",
"transport/transport"
]},
"node/faye-node": { "extend": "core",
"builds": {"min": false},
"files": [
"engines/proxy",
"engines/connection",
"engines/memory",
"protocol/server",
"protocol/socket",
"transport/node_local",
"transport/web_socket",
"transport/node_http",
"adapters/node_adapter",
"adapters/static_server",
"_tail"
]},
"browser/faye-browser": { "extend": "core",
"files": [
"util/browser/event",
"util/browser/json2",
"transport/web_socket",
"transport/event_source",
"transport/xhr",
"transport/cors",
"transport/jsonp",
"_tail"
]}
}
},
"binary": {
"sourceDirectory": ".",
"targetDirectory": ".",
"builds": {
"min": {"digest": false}
},
"targets": {
"lib/faye-browser.js": "build/browser/faye-browser.js",
"lib/faye-browser-min.js": "build/browser/faye-browser-min.js",
"lib/faye-browser-min.js.map": "build/browser/faye-browser-min.js.map",
"build/package.json": "package.json",
"build/CHANGELOG.md": "CHANGELOG.md",
"build/README.md": "README.md"
} } } }