This repository has been archived by the owner on Sep 1, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.6 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
{
"name": "zeplin-json-ext",
"version": "0.1.0",
"description": "An extension that allows the formatting of the styleguide into JSON.",
"author": {
"name": "Callum Floume",
"email": "[email protected]",
"url": "https://github.com/flouc001"
},
"scripts": {
"start": "zem start",
"build": "zem build",
"clean": "zem clean",
"exec": "zem exec"
},
"zeplin": {
"displayName": "Zeplin JSON Styleguide",
"projectTypes": [
"web"
],
"options": [
{
"name": "Color Export Format",
"type": "picker",
"id": "color-format",
"default": "hex",
"options": [
{
"name": "Hex",
"value": "hex"
},
{
"name": "RGBA",
"value": "rgba"
},
{
"name": "RGB",
"value": "rgb"
}
]
},
{
"name": "Font Family Export",
"type": "switch",
"id": "include-font-family",
"default": true
},
{
"name": "Font Size Export",
"type": "switch",
"id": "include-font-size",
"default": true
},
{
"name": "Font Weight Export",
"type": "switch",
"id": "include-font-weight",
"default": false
},
{
"name": "Font Color Export",
"type": "switch",
"id": "include-font-color",
"default": false
}
]
},
"dependencies": {
"zem": "^0.2.0"
},
"devDependencies": {
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0"
}
}