-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
110 lines (110 loc) · 2.34 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
{
"name": "react-native",
"version": "1.5.0",
"description": "Generates React Native JavaScript snippets from colors, text styles and layers.",
"scripts": {
"start": "zem start",
"build": "zem build",
"clean": "zem clean",
"exec": "zem exec",
"test": "zem test",
"publish": "zem publish"
},
"devDependencies": {
"@zeplin/eslint-config": "^1.2.2"
},
"author": {
"name": "Zeplin",
"email": "[email protected]",
"url": "http://zeplin.io"
},
"repository": {
"type": "git",
"url": "https://github.com/zeplin/react-native-extension.git"
},
"zeplin": {
"displayName": "React Native",
"options": [
{
"name": "Color format",
"type": "picker",
"id": "colorFormat",
"submenu": true,
"options": [
{
"name": "Default",
"value": "default"
},
{
"name": "HEX",
"value": "hex"
},
{
"name": "RGB",
"value": "rgb"
},
{
"name": "HSL",
"value": "hsl"
}
],
"default": "default"
},
{
"name": "Token name format",
"type": "picker",
"id": "tokenNameFormat",
"submenu": true,
"options": [
{
"name": "CONSTANT_CASE",
"value": "constant"
},
{
"name": "snake_case",
"value": "snake"
},
{
"name": "camelCase",
"value": "camel"
},
{
"name": "PascalCase",
"value": "pascal"
},
{
"name": "Use original",
"value": "none"
}
],
"default": "constant"
},
{
"name": "Dimensions",
"type": "switch",
"id": "showDimensions",
"default": true
},
{
"name": "Default values",
"type": "switch",
"id": "showDefaultValues",
"default": true
},
{
"name": "Display resources from linked and parent styleguides",
"type": "switch",
"id": "useLinkedStyleguides",
"default": true
}
],
"platforms": [
"android",
"ios",
"web"
]
},
"dependencies": {
"zem": "^1.3.0"
}
}