forked from tbaltrushaitis/roulette-predictor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
132 lines (132 loc) · 3.59 KB
/
package.json
File metadata and controls
132 lines (132 loc) · 3.59 KB
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
{ "name": "roulette-predictor"
, "version": "0.0.1"
, "title": "Casino Roulette Predictor"
, "description": "Online Casino Roulette Analyzer and Predictor"
, "main": "index.html"
, "scripts": {
"build": "gulp build"
}
, "repository": {
"type": "git"
, "url": "https://github.com/tbaltrushaitis/roulette-predictor.git"
}
, "dependencies": {
"bower": "^1.8.2"
, "config": "^1.29.4"
, "dateformat": "^3.0.2"
, "gulp": "^3.9.1"
, "gulp-cli": "^2.0.1"
, "gulp-changed": "^3.2.0"
, "gulp-clean-css": "^3.9.2"
, "gulp-filter": "^5.1.0"
, "gulp-if": "^2.0.2"
, "gulp-rename": "^1.2.2"
, "gulp-directory-sync": "^1.2.3"
, "gulp-require-tasks": "^1.2.1"
, "gulp-uglify": "^3.0.0"
, "main-bower-files": "^2.13.1"
, "merge-stream": "^1.0.0"
, "read-config": "^2.0.0"
, "vinyl-paths": "^2.1.0"
}
, "devDependencies": {}
, "options": {
"bower": {
"debugging": true
, "paths": {
"bowerDirectory": "bower_modules"
, "bowerrc": ".bowerrc"
, "bowerJson": "bower.json"
}
}
, "clean": {
"debug": true
, "processImport": true
}
, "exec": {
"continueOnError": false
, "pipeStdout": false
}
, "file": {
"encoding": "utf8"
, "flag": "r"
}
, "minify": {
"suffix": ".min"
}
, "reporting": {
"err": true
, "stderr": true
, "stdout": true
}
, "sync": {
"printSummary": true
, "nodelete": true
}
, "uglify": {
"compress": {
"sequences": true
, "properties": true
, "dead_code": true
, "drop_debugger": true
, "unsafe": false
, "conditionals": true
, "comparisons": true
, "evaluate": true
, "booleans": true
, "loops": true
, "unused": true
, "hoist_funs": true
, "hoist_vars": false
, "if_return": true
, "join_vars": true
, "cascade": true
, "side_effects": true
, "warnings": true
, "global_defs": {}
}
, "mangle": false
, "output": {
"indent_start": 0
, "indent_level": 4
, "quote_keys": false
, "ascii_only": false
, "inline_script": false
, "width": 80
, "max_line_len": 32000
, "beautify": false
, "source_map": null
, "bracketize": false
, "comments": false
, "semicolons": true
}
}
, "watch": {
"ignoreInitial": false
, "verbose": true
, "readDelay": 100
}
, "iopts": {
"showHidden": false
, "depth": 4
, "colors": true
}
}
, "homepage": "http://bit.ly/roulette-predictor"
, "author": {
"name": "Baltrushaitis Tomas"
, "url": "https://github.com/tbaltrushaitis"
}
, "keywords": [
"analyzer"
, "casino"
, "roulette"
, "predictor"
, "javascript casino analyzer"
]
, "licenses": [
{ "type": "MIT"
, "url": "http://tbaltrushaitis.mit-license.org/"
}
]
}