-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
142 lines (142 loc) · 4.38 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"name": "Consistency",
"version": "1.0.1",
"description": "Constrain staisfacion puzzle.",
"main": "desktop/app.electron.js",
"dependencies": {
"com.fsvieira.cordova.plugin.appnext": "custom-plugins/com.fsvieira.cordova.plugin.appnext",
"com.fsvieira.cordova.plugin.vungle": "file://custom-plugins\\com.fsvieira.cordova.plugin.appnext",
"cordova-android": "^6.2.3",
"cordova-custom-config": "^4.0.2",
"cordova-plugin-compat": "^1.1.0",
"cordova-plugin-file": "^4.3.3",
"cordova-plugin-market": "git+https://github.com/xmartlabs/cordova-plugin-market.git",
"cordova-plugin-media": "^3.0.1",
"cordova-plugin-whitelist": "^1.3.2",
"gulp": "^3.5.6",
"gulp-concat": "^2.2.0",
"gulp-minify-css": "^0.3.0",
"gulp-rename": "^1.2.0",
"market": "^1.0.0"
},
"devDependencies": {
"bower": "^1.3.3",
"del": "~1.1.1",
"electron": "^1.6.2",
"event-stream": "^3.3.4",
"gulp": "~3.8.10",
"gulp-csslint": "~0.1.5",
"gulp-electron": "^0.1.3",
"gulp-htmlhint": "0.0.9",
"gulp-jscs": "~1.4.0",
"gulp-jshint": "~1.9.0",
"gulp-minify-html": "^1.0.6",
"gulp-obfuscate": "~0.2.9",
"gulp-uglify": "^2.0.0",
"gulp-util": "^2.2.14",
"gulp-webmake": "0.0.2",
"imagemin-optipng": "~4.2.0",
"jshint-stylish": "~1.0.0",
"shelljs": "^0.3.0"
},
"jshintConfig": {
"predef": [
"require",
"angular",
"cordova",
"StatusBar",
"console",
"Media",
"inappbilling",
"SQL",
"alert",
"JSON",
"store",
"Appnext"
],
"bitwise": true,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"es3": true,
"forin": true,
"freeze": true,
"immed": true,
"latedef": true,
"newcap": true,
"noempty": true,
"nonbsp": true,
"nonew": true,
"quotmark": true,
"singleGroups": true,
"nocomma": false,
"maxlen": 80,
"maxdepth": 6,
"undef": true,
"unused": true,
"strict": true,
"browser": true,
"browserify": true
},
"jscsConfig": {
"disallowDanglingUnderscores": true,
"disallowMixedSpacesAndTabs": true,
"disallowMultipleLineBreaks": true,
"disallowMultipleLineStrings": true,
"disallowMultipleVarDecl": true,
"disallowSpaceAfterObjectKeys": true,
"disallowSpacesInCallExpression": true,
"disallowTrailingComma": true,
"disallowTrailingWhitespace": true,
"disallowYodaConditions": true,
"disallowSpacesInsideParentheses": true,
"maximumLineLength": 80,
"requireCamelCaseOrUpperCaseIdentifiers": true,
"requireKeywordsOnNewLine": [
"else"
],
"requireLineBreakAfterVariableAssignment": true,
"requireLineFeedAtFileEnd": true,
"requireSpaceAfterKeywords": true,
"requireSpaceBeforeBlockStatements": true,
"requireSpaceBeforeObjectValues": true,
"requireSpaceBetweenArguments": true,
"requireSpacesInForStatement": true,
"requireSpacesInFunctionDeclaration": {
"beforeOpeningRoundBrace": true,
"beforeOpeningCurlyBrace": true
},
"validateIndentation": "\t",
"validateLineBreaks": "LF",
"validateParameterSeparator": ", ",
"validateQuoteMarks": "\""
},
"cssConfig": {
"box-model": true,
"box-sizing": false
},
"cordovaPlugins": [
{
"id": "cordova-plugin-ad-chartboost",
"locator": "../plugins/cordova-plugin-chartboost/"
},
"cordova-plugin-media",
"cordova-plugin-market",
"cordova-plugin-whitelist",
"cordova-custom-config"
],
"cordova": {
"platforms": [
"android"
],
"plugins": {
"cordova-custom-config": {},
"cordova-plugin-compat": {},
"cordova-plugin-file": {},
"cordova-plugin-media": {},
"cordova-plugin-whitelist": {},
"cordova-plugin-market": {},
"com.fsvieira.cordova.plugin.appnext": {}
}
}
}