-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.5 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
{
"name": "noflo-woute",
"description": "Routing web requests based on the request's URL",
"keywords": [
"noflo",
"routing",
"web",
"http",
"request",
"url"
],
"author": "Kenneth Kan <[email protected]>",
"version": "0.1.4",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/kenhkan/noflo-woute/blob/master/LICENSE.md"
}
],
"engines": {
"node": ">=0.6.0"
},
"repository": {
"type": "git",
"url": "git://github.com/kenhkan/noflo-woute"
},
"dependencies": {
"noflo": "~0.4.0",
"underscore": "~1.5.1",
"noflo-webserver": "https://github.com/kenhkan/noflo-webserver/archive/0.0.3+disconnect_on_each_request.tar.gz",
"noflo-core": "~0.1.1"
},
"devDependencies": {
"grunt": "~0.4.1",
"grunt-contrib-coffee": "~0.6.6",
"grunt-coffeelint": "~0.0.6",
"grunt-cafe-mocha": "~0.1.2",
"chai": "~1.5.0",
"mocha": "~1.9.0",
"grunt-mocha-phantomjs": "~0.2.2",
"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": {
"components": {
"Match": "./components/Match.coffee",
"FromPorts": "./components/FromPorts.coffee",
"FromGroups": "./components/FromGroups.coffee",
"ToPorts": "./components/ToPorts.coffee",
"ToGroups": "./components/ToGroups.coffee"
}
},
"scripts": {
"test": "grunt test"
}
}