Skip to content

Commit 45ca417

Browse files
first commit
0 parents  commit 45ca417

25 files changed

+635
-0
lines changed

.gitignore

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
/docs
2+
/dist
3+
/lib-cov
4+
node_modules
5+
6+
/.settings
7+
.project
8+
*.sublime-project
9+
*.sublime-workspace
10+
11+
#*
12+
*$
13+
*.BAK
14+
*.bak
15+
*.log
16+
*.old
17+
*~
18+
.#*
19+
.DS_Store
20+
,*

.jshintrc

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"esnext": true,
3+
"camelcase": true,
4+
"curly": true,
5+
"freeze": true,
6+
"indent": 4,
7+
"latedef": "nofunc",
8+
"newcap": true,
9+
"noarg": true,
10+
"undef": true,
11+
"unused": "vars",
12+
"laxbreak": true,
13+
"maxparams": 8,
14+
"maxdepth": 6,
15+
"maxlen": 120,
16+
"boss": true,
17+
"eqnull": true,
18+
"node": true,
19+
"predef": [ ]
20+
}

.npmignore

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
/dist
2+
/lib-cov
3+
/examples
4+
/samples
5+
6+
/.settings
7+
.project
8+
*.sublime-project
9+
*.sublime-workspace
10+
11+
#*
12+
*$
13+
*.BAK
14+
*.bak
15+
*.log
16+
*.old
17+
*~
18+
.#*
19+
.DS_Store
20+
,*

AUTHORS

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Christophe Hurpeau <[email protected]> (http://christophe.hurpeau.com/)

LICENCE

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Copyright (c) 2014 Christophe Hurpeau
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy
4+
of this software and associated documentation files (the "Software"), to deal
5+
in the Software without restriction, including without limitation the rights
6+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7+
copies of the Software, and to permit persons to whom the Software is
8+
furnished to do so, subject to the following conditions:
9+
10+
The above copyright notice and this permission notice shall be included in
11+
all copies or substantial portions of the Software.
12+
13+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19+
THE SOFTWARE.

Makefile

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
install:
2+
npm install
3+
4+
update:
5+
npm update
6+
7+
clean:
8+
rm -Rf lib lib-cov docs
9+
10+
watch:
11+
gulp watch

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
springbokjs-db-serverstore
2+
============================

gulpfile.js

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
var gulp = require('gulp');
2+
require('springbokjs-library/gulptask')(gulp);

jsdoc.conf.json

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"opts": {
3+
"template": "node_modules/springbokjs-library/node_modules/ink-docstrap/template"
4+
},
5+
"templates" : {
6+
"systemName" : "springbokjs-db-serverstore",
7+
"footer" : "",
8+
"copyright" : "",
9+
"theme" : "spacelab",
10+
"inverseNav" : true,
11+
"outputSourceFiles" : true,
12+
"outputSourcePath" : true,
13+
"linenums": true
14+
}
15+
}

lib/Cursor.js

+95
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/Cursor.js.map

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/ServerStore.js

+94
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/ServerStore.js.map

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/index.js

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/index.js.map

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)