Commit d8691e27 by Dane Springmeyer

update links developmentseed -> mapbox

parent 92ea64c5
Copyright (c) 2011, Konstantin Käfer <kkaefer@gmail.com> Copyright (c) MapBox
All rights reserved. All rights reserved.
Redistribution and use in source and binary forms, with or without modification, Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met: are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer. - Redistributions of source code must retain the above copyright notice, this
* Redistributions in binary form must reproduce the above copyright notice, list of conditions and the following disclaimer.
this list of conditions and the following disclaimer in the documentation - Redistributions in binary form must reproduce the above copyright notice, this
and/or other materials provided with the distribution. list of conditions and the following disclaimer in the documentation and/or
* Neither the name of "Development Seed" nor the names of its contributors other materials provided with the distribution.
may be used to endorse or promote products derived from this software - Neither the name "MapBox" nor the names of its contributors may be
without specific prior written permission. used to endorse or promote products derived from this software without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL Konstantin Käfer BE LIABLE FOR ANY DIRECT, DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
\ No newline at end of file \ No newline at end of file
...@@ -4,13 +4,13 @@ node-sqlite3 - Asynchronous, non-blocking [SQLite3](http://sqlite.org/) bindings ...@@ -4,13 +4,13 @@ node-sqlite3 - Asynchronous, non-blocking [SQLite3](http://sqlite.org/) bindings
(Can also run in [node-webkit](https://github.com/rogerwang/node-webkit) if it uses a supported version of Node's engine.) (Can also run in [node-webkit](https://github.com/rogerwang/node-webkit) if it uses a supported version of Node's engine.)
[![Build Status](https://travis-ci.org/developmentseed/node-sqlite3.png?branch=master)](https://travis-ci.org/developmentseed/node-sqlite3) [![Build Status](https://travis-ci.org/mapbox/node-sqlite3.png?branch=master)](https://travis-ci.org/mapbox/node-sqlite3)
[![npm package version](https://badge.fury.io/js/sqlite3.png)](https://npmjs.org/package/sqlite3) [![npm package version](https://badge.fury.io/js/sqlite3.png)](https://npmjs.org/package/sqlite3)
# USAGE # USAGE
**Note:**   the module must be [installed](#installing) before use. **Note:** the module must be [installed](#installing) before use.
``` js ``` js
var sqlite3 = require('sqlite3').verbose(); var sqlite3 = require('sqlite3').verbose();
...@@ -39,9 +39,9 @@ db.close(); ...@@ -39,9 +39,9 @@ db.close();
* Straightforward query and parameter binding interface * Straightforward query and parameter binding interface
* Full Buffer/Blob support * Full Buffer/Blob support
* Extensive [debugging support](https://github.com/developmentseed/node-sqlite3/wiki/Debugging) * Extensive [debugging support](https://github.com/mapbox/node-sqlite3/wiki/Debugging)
* [Query serialization](https://github.com/developmentseed/node-sqlite3/wiki/Control-Flow) API * [Query serialization](https://github.com/mapbox/node-sqlite3/wiki/Control-Flow) API
* [Extension support](https://github.com/developmentseed/node-sqlite3/wiki/Extensions) * [Extension support](https://github.com/mapbox/node-sqlite3/wiki/Extensions)
* Big test suite * Big test suite
* Written in modern C++ and tested for memory leaks * Written in modern C++ and tested for memory leaks
...@@ -49,7 +49,7 @@ db.close(); ...@@ -49,7 +49,7 @@ db.close();
# API # API
See the [API documentation](https://github.com/developmentseed/node-sqlite3/wiki) in the wiki. See the [API documentation](https://github.com/mapbox/node-sqlite3/wiki) in the wiki.
# INSTALLING # INSTALLING
...@@ -58,7 +58,7 @@ You can use [`npm`](https://github.com/isaacs/npm) to download and install: ...@@ -58,7 +58,7 @@ You can use [`npm`](https://github.com/isaacs/npm) to download and install:
* The latest `sqlite3` package: `npm install sqlite3` * The latest `sqlite3` package: `npm install sqlite3`
* GitHub's `master` branch: `npm install https://github.com/developmentseed/node-sqlite3/tarball/master` * GitHub's `master` branch: `npm install https://github.com/mapbox/node-sqlite3/tarball/master`
In both cases the module is automatically built with npm's internal version of `node-gyp`, In both cases the module is automatically built with npm's internal version of `node-gyp`,
and thus your system must meet [node-gyp's requirements](https://github.com/TooTallNate/node-gyp#installation). and thus your system must meet [node-gyp's requirements](https://github.com/TooTallNate/node-gyp#installation).
...@@ -154,9 +154,9 @@ Thanks to [Orlando Vazquez](https://github.com/orlandov), ...@@ -154,9 +154,9 @@ Thanks to [Orlando Vazquez](https://github.com/orlandov),
[Eric Fredricksen](https://github.com/grumdrig) and [Eric Fredricksen](https://github.com/grumdrig) and
[Ryan Dahl](https://github.com/ry) for their SQLite bindings for node, and to mraleph on Freenode's #v8 for answering questions. [Ryan Dahl](https://github.com/ry) for their SQLite bindings for node, and to mraleph on Freenode's #v8 for answering questions.
Development of this module is sponsored by [Development Seed](http://developmentseed.org/). Development of this module is sponsored by [MapBox](http://mapbox.org/).
# LICENSE # LICENSE
`node-sqlite3` is [BSD licensed](https://github.com/developmentseed/node-sqlite3/raw/master/LICENSE). `node-sqlite3` is [BSD licensed](https://github.com/mapbox/node-sqlite3/raw/master/LICENSE).
...@@ -3,22 +3,21 @@ ...@@ -3,22 +3,21 @@
"description": "Asynchronous, non-blocking SQLite3 bindings", "description": "Asynchronous, non-blocking SQLite3 bindings",
"version": "2.1.17", "version": "2.1.17",
"abi":"a", "abi":"a",
"homepage": "http://github.com/developmentseed/node-sqlite3", "homepage": "http://github.com/mapbox/node-sqlite3",
"author": { "author": {
"name": "Development Seed", "name": "MapBox",
"url": "http://developmentseed.org/", "url": "https://mapbox.com/"
"email": "info@developmentseed.org"
}, },
"contributors": [ "contributors": [
"Konstantin Käfer <mail@kkaefer.com>", "Konstantin Käfer <mail@kkaefer.com>",
"Dane Springmeyer <dane@developmentseed.org>", "Dane Springmeyer <dane@mapbox.com>",
"Will White <will@developmentseed.org>", "Will White <will@mapbox.com>",
"Orlando Vazquez <ovazquez@gmail.com>", "Orlando Vazquez <ovazquez@gmail.com>",
"Artem Kustikov <kustikoff@gmail.com>", "Artem Kustikov <kustikoff@gmail.com>",
"Eric Fredricksen <efredricksen@gmail.com>", "Eric Fredricksen <efredricksen@gmail.com>",
"John Wright <mrjjwright@gmail.com>", "John Wright <mrjjwright@gmail.com>",
"Ryan Dahl <ry@tinyclouds.org>", "Ryan Dahl <ry@tinyclouds.org>",
"Tom MacWright <tom@developmentseed.org>", "Tom MacWright <tom@mapbox.com>",
"Carter Thaxton <carter.thaxton@gmail.com>", "Carter Thaxton <carter.thaxton@gmail.com>",
"Audrius Kažukauskas <audrius@neutrino.lt>", "Audrius Kažukauskas <audrius@neutrino.lt>",
"Johannes Schauer <josch@pyneo.org>", "Johannes Schauer <josch@pyneo.org>",
...@@ -28,7 +27,7 @@ ...@@ -28,7 +27,7 @@
], ],
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git://github.com/developmentseed/node-sqlite3.git" "url": "git://github.com/mapbox/node-sqlite3.git"
}, },
"dependencies": { "dependencies": {
"progress":"~1.0.1", "progress":"~1.0.1",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment