-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrobyn.json
106 lines (106 loc) · 2.21 KB
/
robyn.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
{
"name": "robyn",
"version": "1.3.6",
"author": "RED Interactive <[email protected]>",
"description": "A highly customizable boilerplate to initialize common projects.",
"repository": {
"type": "git",
"url": "https://github.com/ff0000/red-boilerplate.git",
"branch": "master"
},
"systemDependencies": {
"git": "*",
"grunt": "~0.3.0",
"ruby": {
"version": ">= 1.8.7",
"install": "https://gist.github.com/3900651",
"upgrade": "brew update && brew upgrade rbenv"
},
"gem": ">= 1.3.6",
"bundle": {
"version": ">= 1.2.0",
"install": "gem install bundler",
"upgrade": "gem update bundler"
},
"node": {
"version": ">=0.9",
"install": "brew update && brew install node",
"upgrade": "brew update && brew upgrade node"
},
"npm": {
"version": ">= 1.1.59",
"install": "brew update && brew install node",
"upgrade": "brew update && brew upgrade node"
},
"statix": {
"version": ">=1.2.2",
"install": "npm install statix -g",
"upgrade": "npm update statix -g"
}
},
"engines": {
"node": ">=0.9"
},
"installedPlugins": {
"caboose": {
"version": "2.3.0",
"description": "RED Interactive's Sass + Compass Framework."
},
"modernizr": {
"version": "1.0.2",
"description": "Build out a lean, mean Modernizr machine."
},
"rosy": {
"version": "2.1.5",
"description": "An inheritable AMD Framework."
},
"statix": {
"version": "0.0.4",
"description": "Statix is a static website generator."
}
},
"config": {
"vars": {
"PROJECT_NAME": "logo",
"PROJECT_TITLE": "RED Canvas Logo"
},
"dirs": {
"robyn": ".robyn",
"tasks": "robyn/tasks",
"config": "robyn/config"
},
"requiredPaths": [
".robyn",
"node_modules",
".bundle",
"Gemfile",
"Gemfile.lock"
],
"excludedPaths": [
".git",
".robyn",
"node_modules",
".bundle",
".sass-cache"
],
"ignoreTasks": [
"concat",
"init",
"lint",
"min",
"qunit",
"test"
]
},
"scripts": {
"install": [
".robyn/plugins/caboose/config/init/caboose.js",
".robyn/plugins/rosy/config/init/rosy.js"
],
"update": [
".robyn/plugins/caboose/config/init/caboose.js",
".robyn/plugins/rosy/config/init/rosy.js"
]
},
"initialized": true
}