This repository has been archived by the owner on Feb 15, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmeta.json
115 lines (115 loc) · 2.61 KB
/
meta.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
107
108
109
110
111
112
113
114
115
{
"prompts": [
{
"name": "name",
"type": "input",
"message": "Name of your application",
"default": "pkg.name || options.name",
"required": true
},
{
"name": "description",
"type": "input",
"message": "Project description",
"default": "pkg.description || 'My project'"
},
{
"name": "providers",
"type": "checkbox",
"message": "What type of API are you making?",
"choices": [
{
"name": "REST",
"value": "rest",
"checked": true
},
{
"name": "Realtime via Socket.io",
"value": "socketio",
"checked": true
},
{
"name": "Realtime via Primus",
"value": "primus"
}
]
},
{
"name": "cors",
"type": "list",
"message": "CORS configuration",
"choices": [
{
"name": "Enabled for all domains",
"value": "enabled",
"checked": true
},
{
"name": "Enabled for whitelisted domains",
"value": "whitelisted"
},
{
"name": "Disabled",
"value": false
}
]
},
{
"name": "whitelist",
"type": "input",
"message": "Comma-separated domains for CORS whitelist. Include http(s)",
"when": "answers.cors === 'whitelisted'",
"filter": "input.split(',')"
}
],
"dependencies": {
"common": {
"feathers": "^2.0.0",
"feathers-hooks": "^1.5.0",
"feathers-errors": "^2.3.0",
"feathers-bootstrap": "^0.2.0",
"feathers-logger": "^0.2.2",
"feathers-configuration": "^0.4.1",
"serve-favicon": "^2.3.0",
"compression": "^1.6.2",
"bunyan": "^1.8.5"
},
"rest": {
"feathers-rest": "^1.4.2",
"body-parser": "^1.15.1"
},
"socketio": {
"feathers-socketio": "^1.4.1"
},
"primus": {
"feathers-primus": "^1.4.0",
"ws": ">=1.0.0"
},
"cors": {
"cors": "^1.0.0"
}
},
"devDependencies": {
"common": {
"mocha": "^2.5.3",
"request": "^2.72.0",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^2.4.5",
"shx": "^0.2.1",
"eslint-if-supported": "^1.0.1",
"semistandard": "^9.2.1"
},
"eslint": {
"eslint": "^2.7.0",
"eslint-config-standard": "^5.1.0",
"eslint-plugin-promise": "^1.1.0",
"eslint-plugin-standard": "^1.3.2"
},
"babel": {
"babel-cli":"^6.24.1",
"babel-core": "^6.7.0",
"babel-preset-es2015": "^6.6.0",
"babel-plugin-add-module-exports": "^0.2.1"
}
}
}