forked from Automizy/Automizy-Email-Editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (93 loc) · 2.12 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
{
"name": "automizy-email-editor",
"version":"1.0.0",
"license": "MIT",
"title": "Automizy Email Editor",
"description": "Design mobile friendly HTML emails in your application.",
"main": [
"src/aee.js",
"src/aee.css"
],
"homepage": "http://developers.automizy.com/emaileditor",
"authors":[
{ "name": "Gyorgy Reti", "email": "[email protected]" },
{ "name": "Dominik Sagi", "email": "[email protected]" },
{ "name": "Abel Enekes", "email": "[email protected]" },
{ "name": "Gabor Koncz", "email": "[email protected]" }
],
"keywords": [
"automizy-email-editor",
"automizy",
"email-editor",
"automizy-js",
"automizy-js-api",
"email",
"editor",
"free",
"integrate",
"responsive",
"mobile-friendly"
],
"bugs": {
"email": "[email protected]",
"url" : "https://github.com/Automizy/Automizy-Email-Editor/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/automizy/automizy-email-editor.git"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-contrib-requirejs": "^0.4.4",
"grunt-contrib-uglify": "~0.5.0",
"grunt-contrib-compress": "~0.4.0",
"grunt-contrib-copy": "*",
"qunitjs": "^1.16.0",
"requirejs": "^2.1.15"
},
"jshintConfig": {
"passfail" : false,
"browser" : true,
"jquery" : true,
"predef" : [
"define",
"require",
"requirejs",
"$AEE",
"AutomizyEmailEditor"
],
"debug" : true,
"devel" : true,
"strict" : false,
"asi" : false,
"laxbreak" : false,
"bitwise" : false,
"boss" : false,
"curly" : false,
"eqeqeq" : true,
"eqnull" : false,
"evil" : false,
"expr" : false,
"forin" : false,
"immed" : true,
"latedef" : true,
"loopfunc" : false,
"noarg" : true,
"regexp" : true,
"regexdash" : false,
"scripturl" : true,
"shadow" : false,
"supernew" : false,
"undef" : true,
"newcap" : true,
"noempty" : true,
"nonew" : true,
"nomen" : true,
"onevar" : false,
"plusplus" : false,
"sub" : true,
"trailing" : true,
"white" : false,
"quotmark" : false
}
}