-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.3 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
{
"name": "httphooks",
"author": "Microsoft Corporation",
"contributors": [
"Langholz, Elmar <elan@microsoft.com>",
"Ermel, Keith <keermel@microsoft.com>",
"Wagle, Justin <justiwag@microsoft.com>"
],
"description": "A webhook implementation which extends the concept to HTTP REST API's",
"version": "0.0.1",
"keywords": ["http", "hook", "web", "webhook"],
"dependencies": {
"querystring": ">= 0.2.0",
"async": ">= 0.2.9",
"clone": ">= 0.1.11",
"rx": ">= 2.2.7",
"collections": ">= 0.2.2",
"node-uuid": ">= 1.4.1",
"route-pattern": ">= 0.0.6",
"debug": ">= 0.7.3",
"request": ">= 2.0.0",
"socket.io-client": ">= 0.9.16",
"sockjs-client": ">= 0.1.3"
},
"devDependencies": {
"mocha": "*",
"should": "*",
"jsdox": "*",
"socket.io": ">= 0.9.16",
"sockjs": ">= 0.3.8"
},
"scripts": {
"test": "node tests/runTests.js",
"doc": "jsdox lib/ --output doc/api/"
},
"main": "index.js",
"engines": {
"node": ">= 0.8.0"
},
"licenses": [
{
"type": "Apache 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
]
}