-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
111 lines (111 loc) · 2.56 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
{
"name": "zepcode",
"version": "0.8.0",
"description": "Generates Swift snippets from colors, fonts and layers.",
"lint-staged": {
"src/**/*.{js,json}": [
"prettier --config .prettierrc --write",
"git add"
]
},
"scripts": {
"start": "zem start",
"build": "zem build",
"clean": "zem clean",
"exec": "zem exec",
"test:lint": "eslint --ext=js .",
"test": "run-s test:**",
"publish": "zem publish"
},
"husky": {
"hooks": {
"precommit": "lint-staged"
}
},
"dependencies": {
"zem": "^0.4.0"
},
"devDependencies": {
"babel-eslint": "10.0.1",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-config-prettier": "^4.3.0",
"eslint-loader": "2.1.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^1.3.1",
"lint-staged": "^8.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1"
},
"repository": "https://github.com/artemnovichkov/zepcode",
"author": {
"name": "Artem Novichkov",
"email": "[email protected]",
"url": "https://github.com/artemnovichkov"
},
"contributors": [
{
"name": "Pavel Baybara",
"email": "[email protected]",
"url": "https://github.com/baybara-pavel"
},
{
"name": "Adam Swinden",
"email": "[email protected]",
"url": "https://github.com/AdamSwinden"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/artemnovichkov/zepcode/issues"
},
"homepage": "https://github.com/artemnovichkov/zepcode#readme",
"zeplin": {
"displayName": "Zepcode",
"projectTypes": [
"ios"
],
"platforms": [
"ios"
],
"repository": "https://github.com/artemnovichkov/zepcode",
"options": [
{
"name": "Use color names",
"type": "switch",
"id": "use_color_names",
"default": true
},
{
"name": "Color initializer style",
"type": "picker",
"id": "color_initializer_style",
"default": "default",
"options": [
{
"name": "Default",
"value": "default"
},
{
"name": "Custom",
"value": "custom"
},
{
"name": "Literal",
"value": "literal"
},
{
"name": "Colorset",
"value": "colorset"
}
]
},
{
"name": "Use layer extension for shadows",
"type": "switch",
"id": "use_layer_shadow_extension",
"default": false
}
]
}
}