-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
61 lines (61 loc) · 1.47 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
{
"name": "flutter_extension",
"version": "1.4.0",
"description": "Generates Flutter classes from colors, text styles and layers code",
"scripts": {
"start": "zem start",
"build": "zem build",
"clean": "zem clean",
"exec": "zem exec",
"build:test": "zem build --dev",
"test": "npm run build:test && jest --testURL http://localhost && npm run clean",
"publish": "zem publish"
},
"devDependencies": {
"@zeplin/eslint-config": "^1.2.2",
"@zeplin/extension-model": "^2.4.0",
"eslint": "^6.6.0",
"jest": "^24.9.0",
"zem": "^1.0.3"
},
"author": {
"name": "AgoraNet",
"email": "support@agora-net.com",
"url": "http://www.agora-net.com"
},
"repository": {
"type": "git",
"url": "https://github.com/johngray1965/FlutterZeplinExtension.git"
},
"zeplin": {
"displayName": "Flutter",
"platforms": [
"web",
"android",
"ios"
],
"options": [
{
"name": "Color/Style class name Prefix",
"type": "text",
"id": "classPrefix",
"default": ""
},
{
"name": "Handle Screens? Warning, this can be very cpu intensive",
"type": "switch",
"id": "handleScreens",
"default": false
},
{
"name": "Generates Flutter code for many aspects for your design",
"type": "switch",
"id": "useLinkedStyleguides",
"default": true
}
]
},
"dependencies": {
"to-hex": "0.0.4"
}
}