Download this file

data.js    40 lines (25 with data), 684 Bytes

 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
var template = module.exports;
// Name that appears in the generator list
template.name = "GPIO (Driver skeleton for Linux the GPIO interface, Available soon)";
// Long description
template.description = 'An empty Device Driver, without any configured ' +
'protocols or datasources';
// IO Component type: 'driver' or 'connector';
template.type='driver';
// Version
template.package = {
'version': '1.0.0'
};
// Swagger file location in 'files' folder
template.swagger = '/swagger/Driver.yaml';
template.files = [{
}];
//Inquirer prompts
template.prompts = {
};
template.dependencies = {
};
template.devDependences = {
};
template.transformstream = function () {
};