Skip to content

Commit d8691e2

Browse files
author
Dane Springmeyer
committed
update links developmentseed -> mapbox
1 parent 92ea64c commit d8691e2

File tree

3 files changed

+33
-33
lines changed

3 files changed

+33
-33
lines changed

LICENSE

+17-16
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,25 @@
1-
Copyright (c) 2011, Konstantin Käfer <[email protected]>
1+
Copyright (c) MapBox
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or without modification,
55
are permitted provided that the following conditions are met:
6-
* Redistributions of source code must retain the above copyright notice,
7-
this list of conditions and the following disclaimer.
8-
* Redistributions in binary form must reproduce the above copyright notice,
9-
this list of conditions and the following disclaimer in the documentation
10-
and/or other materials provided with the distribution.
11-
* Neither the name of "Development Seed" nor the names of its contributors
12-
may be used to endorse or promote products derived from this software
13-
without specific prior written permission.
6+
7+
- Redistributions of source code must retain the above copyright notice, this
8+
list of conditions and the following disclaimer.
9+
- Redistributions in binary form must reproduce the above copyright notice, this
10+
list of conditions and the following disclaimer in the documentation and/or
11+
other materials provided with the distribution.
12+
- Neither the name "MapBox" nor the names of its contributors may be
13+
used to endorse or promote products derived from this software without
14+
specific prior written permission.
1415

1516
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
1617
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
1718
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18-
DISCLAIMED. IN NO EVENT SHALL Konstantin Käfer BE LIABLE FOR ANY DIRECT,
19-
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
20-
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21-
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
22-
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
23-
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
24-
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
19+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
20+
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
23+
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
25+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

README.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ node-sqlite3 - Asynchronous, non-blocking [SQLite3](http://sqlite.org/) bindings
44

55
(Can also run in [node-webkit](https://github.com/rogerwang/node-webkit) if it uses a supported version of Node's engine.)
66

7-
[![Build Status](https://travis-ci.org/developmentseed/node-sqlite3.png?branch=master)](https://travis-ci.org/developmentseed/node-sqlite3)
7+
[![Build Status](https://travis-ci.org/mapbox/node-sqlite3.png?branch=master)](https://travis-ci.org/mapbox/node-sqlite3)
88
[![npm package version](https://badge.fury.io/js/sqlite3.png)](https://npmjs.org/package/sqlite3)
99

1010

1111
# USAGE
1212

13-
**Note:**   the module must be [installed](#installing) before use.
13+
**Note:** the module must be [installed](#installing) before use.
1414

1515
``` js
1616
var sqlite3 = require('sqlite3').verbose();
@@ -39,17 +39,17 @@ db.close();
3939

4040
* Straightforward query and parameter binding interface
4141
* Full Buffer/Blob support
42-
* Extensive [debugging support](https://github.com/developmentseed/node-sqlite3/wiki/Debugging)
43-
* [Query serialization](https://github.com/developmentseed/node-sqlite3/wiki/Control-Flow) API
44-
* [Extension support](https://github.com/developmentseed/node-sqlite3/wiki/Extensions)
42+
* Extensive [debugging support](https://github.com/mapbox/node-sqlite3/wiki/Debugging)
43+
* [Query serialization](https://github.com/mapbox/node-sqlite3/wiki/Control-Flow) API
44+
* [Extension support](https://github.com/mapbox/node-sqlite3/wiki/Extensions)
4545
* Big test suite
4646
* Written in modern C++ and tested for memory leaks
4747

4848

4949

5050
# API
5151

52-
See the [API documentation](https://github.com/developmentseed/node-sqlite3/wiki) in the wiki.
52+
See the [API documentation](https://github.com/mapbox/node-sqlite3/wiki) in the wiki.
5353

5454

5555
# INSTALLING
@@ -58,7 +58,7 @@ You can use [`npm`](https://github.com/isaacs/npm) to download and install:
5858

5959
* The latest `sqlite3` package: `npm install sqlite3`
6060

61-
* GitHub's `master` branch: `npm install https://github.com/developmentseed/node-sqlite3/tarball/master`
61+
* GitHub's `master` branch: `npm install https://github.com/mapbox/node-sqlite3/tarball/master`
6262

6363
In both cases the module is automatically built with npm's internal version of `node-gyp`,
6464
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),
154154
[Eric Fredricksen](https://github.com/grumdrig) and
155155
[Ryan Dahl](https://github.com/ry) for their SQLite bindings for node, and to mraleph on Freenode's #v8 for answering questions.
156156

157-
Development of this module is sponsored by [Development Seed](http://developmentseed.org/).
157+
Development of this module is sponsored by [MapBox](http://mapbox.org/).
158158

159159

160160
# LICENSE
161161

162-
`node-sqlite3` is [BSD licensed](https://github.com/developmentseed/node-sqlite3/raw/master/LICENSE).
162+
`node-sqlite3` is [BSD licensed](https://github.com/mapbox/node-sqlite3/raw/master/LICENSE).

package.json

+7-8
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,21 @@
33
"description": "Asynchronous, non-blocking SQLite3 bindings",
44
"version": "2.1.17",
55
"abi":"a",
6-
"homepage": "http://github.com/developmentseed/node-sqlite3",
6+
"homepage": "http://github.com/mapbox/node-sqlite3",
77
"author": {
8-
"name": "Development Seed",
9-
"url": "http://developmentseed.org/",
10-
"email": "[email protected]"
8+
"name": "MapBox",
9+
"url": "https://mapbox.com/"
1110
},
1211
"contributors": [
1312
"Konstantin Käfer <[email protected]>",
14-
"Dane Springmeyer <dane@developmentseed.org>",
15-
"Will White <will@developmentseed.org>",
13+
"Dane Springmeyer <dane@mapbox.com>",
14+
"Will White <will@mapbox.com>",
1615
"Orlando Vazquez <[email protected]>",
1716
"Artem Kustikov <[email protected]>",
1817
"Eric Fredricksen <[email protected]>",
1918
"John Wright <[email protected]>",
2019
"Ryan Dahl <[email protected]>",
21-
"Tom MacWright <tom@developmentseed.org>",
20+
"Tom MacWright <tom@mapbox.com>",
2221
"Carter Thaxton <[email protected]>",
2322
"Audrius Kažukauskas <[email protected]>",
2423
"Johannes Schauer <[email protected]>",
@@ -28,7 +27,7 @@
2827
],
2928
"repository": {
3029
"type": "git",
31-
"url": "git://github.com/developmentseed/node-sqlite3.git"
30+
"url": "git://github.com/mapbox/node-sqlite3.git"
3231
},
3332
"dependencies": {
3433
"progress":"~1.0.1",

0 commit comments

Comments
 (0)