forked from noflo/noflo-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.04 KB
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
{
"name": "noflo-core",
"description": "NoFlo Essentials",
"version": "0.1.9",
"author": {
"name": "Henri Bergius",
"email": "henri.bergius@iki.fi"
},
"maintainers": [
{
"name": "Kenneth Kan",
"email": "kenhkan@gmail.com"
}
],
"contributors": [
{
"name": "Kenneth Kan",
"email": "kenhkan@gmail.com"
},
{
"name": "Ryan Shaw",
"email": "ryanshaw@unc.edu"
}
],
"repository": {
"type": "git",
"url": "https://github.com/noflo/noflo-core.git"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/noflo/noflo-core/blob/master/LICENSE-MIT"
}
],
"dependencies": {
"noflo": "~0.5.2",
"underscore": "~1.5.1",
"owl-deepcopy": "0.0.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.5.0",
"mocha": "~1.9.0",
"grunt-mocha-phantomjs": "~0.2.2",
"grunt-contrib-uglify": "~0.2.0",
"grunt-contrib-watch": "~0.3.1",
"grunt-noflo-manifest": "^0.1.4",
"grunt-noflo-browser": "^0.1.1"
},
"keywords": [],
"noflo": {
"components": {
"Callback": "components/Callback.coffee",
"Copy": "components/Copy.coffee",
"DisconnectAfterPacket": "components/DisconnectAfterPacket.coffee",
"Drop": "components/Drop.coffee",
"Group": "components/Group.coffee",
"Kick": "components/Kick.coffee",
"MakeFunction": "components/MakeFunction.coffee",
"Merge": "components/Merge.coffee",
"Output": "components/Output.coffee",
"ReadEnv": "components/ReadEnv.coffee",
"Repeat": "components/Repeat.coffee",
"RepeatAsync": "components/RepeatAsync.coffee",
"RepeatDelayed": "components/RepeatDelayed.coffee",
"RunInterval": "components/RunInterval.coffee",
"RunTimeout": "components/RunTimeout.coffee",
"SendNext": "components/SendNext.coffee",
"Split": "components/Split.coffee"
}
},
"scripts": {
"test": "grunt test"
}
}