-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
93 lines (93 loc) · 2.65 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
{
"name": "zeplin-extension-xaml",
"version": "0.1.0",
"description": "Generates XAML (Universal Windows Platform) snippets from colors, text styles and layers.",
"author": {
"name": "nventive",
"url": "http://nventive.com"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/nventive/zeplin-extension-xaml"
},
"scripts": {
"start": "zem start",
"build": "zem build",
"clean": "zem clean",
"exec": "zem exec"
},
"devDependencies": {
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.7.0",
"mustache-loader": "^1.4.0",
"zem": "^0.1.2"
},
"dependencies": {
"indent-string": "^3.2.0",
"lodash": "^4.17.5",
"mustache": "^2.3.0"
},
"zeplin": {
"displayName": "XAML",
"projectTypes": [
"web",
"android",
"ios"
],
"options": [
{
"name": "Sort styleguide resources",
"type": "switch",
"id": "sortResources",
"default": true
},
{
"name": "Consolidate duplicates (specify suffix)",
"type": "text",
"id": "duplicateSuffix",
"default": ""
},
{
"name": "Define TextAlignment on",
"type": "picker",
"id": "textAlignmentMode",
"default": "textBlock",
"options": [
{
"name": "TextBlock",
"value": "textBlock"
},
{
"name": "Style",
"value": "style"
}
]
},
{
"name": "Ignore CharacterSpacing",
"type": "switch",
"id": "ignoreCharacterSpacing",
"default": false
},
{
"name": "Ignore FontFamily",
"type": "switch",
"id": "ignoreFontFamily",
"default": false
},
{
"name": "Ignore LineHeight",
"type": "switch",
"id": "ignoreLineHeight",
"default": false
},
{
"name": "Add TextTrimming.CharacterEllipsis to all text styles",
"type": "switch",
"id": "addCharacterEllipsis",
"default": true
}
]
}
}