-
Notifications
You must be signed in to change notification settings - Fork 1
/
scriptive.json
100 lines (100 loc) · 2.6 KB
/
scriptive.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
{
"app": {
"name": "laisiangtho",
"version":"1.0.0",
"build": "1.0.0",
"description":"the Holy Bible in languages!",
"developer":"Khen Solomon Lethil",
"library": {
"jquery.min.js":"http://code.jquery.com/jquery-3.1.1.min.js",
"jquery.ui.min.js":"http://code.jquery.com/ui/1.12.0/jquery-ui.min.js",
"jquery.ui.touch-punch.min.js": "https://raw.githubusercontent.com/furf/jquery-ui-touch-punch/master/jquery.ui.touch-punch.min.js",
"localforage.min.js":"https://mozilla.github.io/localForage/localforage.min.js",
"filestorage.min.js":"https://raw.githubusercontent.com/scriptive/fileStorage/master/dist/filestorage.min.js",
"sortable.min.js":"https://raw.githubusercontent.com/RubaXa/Sortable/master/Sortable.min.js",
"slip.min.js":"https://raw.githubusercontent.com/pornel/slip/master/slip.js",
"google-analytics-bundle.js":"https://raw.githubusercontent.com/GoogleChrome/chrome-platform-analytics/master/google-analytics-bundle.js"
},
"dist": {
"file": {
"font": {
"(.*)": true
},
"lang": {
"bible.json": true
}
}
}
},
"individual": {
"chrome": {
"dev": {},
"dist": {}
},
"ios": {
"dev": {},
"dist": {}
},
"android": {
"dev": {},
"dist": {}
},
"default": {
"dev": {},
"dist": {}
},
"web": {
"dev": {},
"dist": {}
},
"electron": {
"dev": {},
"dist": {}
}
},
"gulp":{
"sass":{
"debugInfo": true,
"lineNumbers": false,
"errLogToConsole": true,
"outputStyle": "compressed"
},
"js":{
"output":{
"beautify": false,
"comments":"license"
},
"compress":true,
"preserveComments":"license"
},
"custom":{
"fileStorage": {
"source":"../scriptive.filestorage/asset/filestorage/fileStorage.js",
"target":["dev/lib","api/extension/js"],
"pipe":{
"gulp-include":{},
"gulp-uglify":{
"mangle":false,
"output":{
"beautify": false,
"comments":"license"
},
"compress":true,
"preserveComments":"license"
},
"gulp-concat":"filestorage.min.js"
},
"watch":"../scriptive.filestorage/asset/filestorage/*.js"
},
"extensionSASS": {
"source":"asset/extensionSASS/*([^A-Z0-9-]).scss",
"target":"api/extension/css",
"pipe":{
"gulp-sass":{
"style": "compressed"
}
}
}
}
}
}