This repository has been archived by the owner on Jul 7, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 1.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
{
"name": "noflo-request",
"description": "NoFlo components for http requests",
"version": "0.0.0",
"author": {
"name": "Konstantin Burykin",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/burkostya/noflo-request.git"
},
"bugs": {
"url": "https://github.com/burkostya/noflo-request/issues"
},
"licenses": [
{
"type": "MIT",
"url": "git://github.com/burkostya/noflo-request/blob/master/LICENSE-MIT"
}
],
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"test": "grunt test:nodejs"
},
"dependencies": {
"noflo": "~0.4.0",
"superagent": "~0.15.4",
"noflo-objects": "~0.1.5",
"noflo-adapters": "~0.1.2",
"noflo-core": "~0.1.2"
},
"devDependencies": {
"grunt": "~0.4.1",
"grunt-contrib-coffee": "~0.6.6",
"grunt-coffeelint": "~0.0.6",
"grunt-cafe-mocha": "~0.1.2",
"chai": "~1.7.0",
"mocha": "~1.12.0",
"grunt-mocha-phantomjs": "~0.3.0",
"grunt-component-build": "~0.2.7",
"grunt-contrib-uglify": "~0.2.0",
"grunt-contrib-watch": "~0.3.1",
"component-json": "~0.1.4",
"grunt-combine": "~0.8.3",
"grunt-component": "~0.1.2",
"noflo-test": "0.0.6",
"grunt-contrib-connect": "~0.5.0"
},
"keywords": [],
"noflo": {
"components": {
"MakeRequest": "components/MakeRequest.coffee",
"SendRequest": "components/SendRequest.coffee"
},
"graphs": {
"SetRequestQuery": "graphs/SetRequestQuery.fbp",
"AbortRequest": "graphs/AbortRequest.fbp",
"GetResponseText": "graphs/GetResponseText.fbp"
}
}
}