-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
158 lines (158 loc) · 4.06 KB
/
package.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
{
"name": "feature-bundle",
"scripts": {
"build": "node index.js"
},
"devDependencies": {
"bestzip": "^2.2.0",
"demo-feature": "file:../demo",
"facebook-feature": "file:../facebook",
"google-feature": "file:../google",
"lexicon-feature": "file:../lexicon",
"poly-explorer-feature": "file:../polyExplorer",
"polypedia-preview": "file:../polypediaPreview",
"amazon-data-importer-preview": "file:../amazonDataImporterPreview",
"company-data-cleaner-preview": "file:../companyDataCleanerPreview",
"cooperative-membership-preview": "file:../cooperativeMembershipPreview",
"feature-store-preview": "file:../featureStorePreview",
"gdpr-data-importer-preview": "file:../gdprDataImporterPreview",
"netflix-data-importer-preview": "file:../netflixDataImporterPreview",
"polypoly-membership-feature": "file:../polypolyMembership",
"polypoly-membership-preview": "file:../polypolyMembershipPreview",
"poly-talk-preview": "file:../polyTalkPreview",
"test-feature": "file:../test",
"messenger": "file:../messenger"
},
"private": true,
"polyPodFeatures": [
{
"archiveName": "polypediaPreview",
"moduleName": "polypedia-preview",
"artifactPath": "dist"
},
{
"archiveName": "cooperativeMembershipPreview",
"moduleName": "cooperative-membership-preview",
"artifactPath": "dist"
},
{
"archiveName": "polypolyMembership",
"moduleName": "polypoly-membership-feature",
"artifactPath": "dist"
},
{
"archiveName": "polypolyMembershipPreview",
"moduleName": "polypoly-membership-preview",
"artifactPath": "dist"
},
{
"archiveName": "amazonPreview",
"moduleName": "amazon-data-importer-preview",
"artifactPath": "dist"
},
{
"archiveName": "companyDataCleanerPreview",
"moduleName": "company-data-cleaner-preview",
"artifactPath": "dist"
},
{
"archiveName": "featureStorePreview",
"moduleName": "feature-store-preview",
"artifactPath": "dist"
},
{
"archiveName": "gdprImporterPreview",
"moduleName": "gdpr-data-importer-preview",
"artifactPath": "dist"
},
{
"archiveName": "NetflixImportPreview",
"moduleName": "netflix-data-importer-preview",
"artifactPath": "dist"
},
{
"archiveName": "polyTalkPreview",
"moduleName": "poly-talk-preview",
"artifactPath": "dist"
},
{
"archiveName": "polyExplorer",
"moduleName": "poly-explorer-feature",
"artifactPath": "dist"
},
{
"archiveName": "facebookImport",
"moduleName": "facebook-feature",
"artifactPath": "dist"
},
{
"archiveName": "google",
"moduleName": "google-feature",
"artifactPath": "dist"
},
{
"archiveName": "lexicon",
"moduleName": "lexicon-feature",
"artifactPath": "public"
},
{
"archiveName": "demo",
"moduleName": "demo-feature",
"artifactPath": "dist"
},
{
"archiveName": "test",
"moduleName": "test-feature",
"artifactPath": "dist"
},
{
"archiveName": "messenger",
"moduleName": "messenger",
"artifactPath": "dist"
}
],
"polyPodCategories": [
{
"id": "yourData",
"name": "Your Data",
"features": [
"google",
"facebookImport",
"polypolyMembership",
"amazonPreview",
"NetflixImportPreview",
"gdprImporterPreview",
"companyDataCleanerPreview",
"polypolyMembershipPreview",
"cooperativeMembershipPreview"
]
},
{
"id": "knowHow",
"name": "Data Know-How",
"features": [
"polyExplorer",
"lexicon",
"polypediaPreview"
]
},
{
"id": "tools",
"name": "Tools",
"features": [
"featureStorePreview",
"polyTalkPreview"
]
},
{
"id": "developer",
"name": "Developer",
"visible": true,
"features": [
"demo",
"test",
"messenger"
]
}
]
}