-
Notifications
You must be signed in to change notification settings - Fork 31
/
taxonomies.js
67 lines (65 loc) · 1.67 KB
/
taxonomies.js
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
// Archived:
//
// - jQuery Infrastructure Team
// 2012-2013: https://docs.google.com/document/d/1JUfGj8dQH3Q4JoBOlNnfDFrESzMt6LhktXsmtPYocXI
//
// - jQuery Mobile Team
// 2016-2017: https://docs.google.com/spreadsheets/d/11-mngR57h54cIOjGDE2Z6LjaiyRgDwlcvKUzZn2Fw6M
//
// - jQuery UI Team
// 2016: https://docs.google.com/spreadsheets/d/18JaqyU8wPJtn0HB9g7DpUiocZo8YC2p7MDovhcFZqzE
taxonomies = {
"category": [
{
"name": "Chassis Team",
"slug": "chassis",
"description": "Minutes from Chassis Team meetings"
},
{
"name": "jQuery Content Team",
"slug": "content",
"description": "Minutes from jQuery Content Team meetings"
},
{
"name": "jQuery Core Team",
"slug": "core",
"description": "Minutes from jQuery Core Team meetings"
},
{
"name": "Ecma/TC39",
"slug": "tc39",
"description": "Minutes from Ecma/TC39 meetings, recorded by jQuery representatives"
},
{
"name": "jQuery Mobile Team",
"slug": "mobile",
"description": "Minutes from jQuery Mobile Team meetings"
},
{
"name": "js-reporters Team",
"slug": "js-reporters",
"description": "Minutes from js-reporters Team meetings"
},
{
"name": "PEP Team",
"slug": "pep",
"description": "Minutes from PEP Team meetings"
},
{
"name": "Project Leads",
"slug": "project-leads",
"description": "Minutes from Project Leads meetings"
},
{
"name": "Testing Team",
"slug": "testing",
"description": "Minutes from jQuery Testing Team meetings"
},
{
"name": "jQuery UI Team",
"slug": "ui",
"description": "Minutes from jQuery UI Team meetings"
}
]
};
module.exports = taxonomies;