Skip to content

Commit a840bde

Browse files
committed
isc license
1 parent 1a677c8 commit a840bde

File tree

2 files changed

+41
-54
lines changed

2 files changed

+41
-54
lines changed

LICENSE

+12-25
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,15 @@
1-
Copyright (c) Isaac Z. Schlueter
2-
Copyright (c) Andri Möll
3-
All rights reserved.
1+
The ISC License
42

5-
The BSD License
3+
Copyright (c) Isaac Z. Schlueter and Contributors
64

7-
Redistribution and use in source and binary forms, with or without
8-
modification, are permitted provided that the following conditions
9-
are met:
5+
Permission to use, copy, modify, and/or distribute this software for any
6+
purpose with or without fee is hereby granted, provided that the above
7+
copyright notice and this permission notice appear in all copies.
108

11-
1. Redistributions of source code must retain the above copyright
12-
notice, this list of conditions and the following disclaimer.
13-
14-
2. Redistributions in binary form must reproduce the above copyright
15-
notice, this list of conditions and the following disclaimer in the
16-
documentation and/or other materials provided with the distribution.
17-
18-
THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
19-
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20-
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
21-
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS
22-
BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23-
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24-
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
25-
BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
26-
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
27-
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
28-
IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
9+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
15+
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

package.json

+29-29
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,31 @@
11
{
2-
"name": "json-stringify-safe",
3-
"version": "5.0.0",
4-
"description": "Like JSON.stringify, but doesn't blow up on circular refs.",
5-
"keywords": [
6-
"json",
7-
"stringify",
8-
"circular",
9-
"safe"
10-
],
11-
12-
"homepage": "https://github.com/isaacs/json-stringify-safe",
13-
"bugs": "https://github.com/isaacs/json-stringify-safe/issues",
14-
"author": "Isaac Z. Schlueter <[email protected]> (http://blog.izs.me)",
15-
"contributors": ["Andri Möll <[email protected]> (http://themoll.com)"],
16-
"license": "BSD",
17-
18-
"repository": {
19-
"type": "git",
20-
"url": "git://github.com/isaacs/json-stringify-safe"
21-
},
22-
23-
"main": "stringify.js",
24-
"scripts": {"test": "node test.js"},
25-
26-
"devDependencies": {
27-
"mocha": ">= 2.1.0 < 3",
28-
"must": ">= 0.12 < 0.13",
29-
"sinon": ">= 1.12.2 < 2"
30-
}
2+
"name": "json-stringify-safe",
3+
"version": "5.0.0",
4+
"description": "Like JSON.stringify, but doesn't blow up on circular refs.",
5+
"keywords": [
6+
"json",
7+
"stringify",
8+
"circular",
9+
"safe"
10+
],
11+
"homepage": "https://github.com/isaacs/json-stringify-safe",
12+
"bugs": "https://github.com/isaacs/json-stringify-safe/issues",
13+
"author": "Isaac Z. Schlueter <[email protected]> (http://blog.izs.me)",
14+
"contributors": [
15+
"Andri Möll <[email protected]> (http://themoll.com)"
16+
],
17+
"license": "ISC",
18+
"repository": {
19+
"type": "git",
20+
"url": "git://github.com/isaacs/json-stringify-safe"
21+
},
22+
"main": "stringify.js",
23+
"scripts": {
24+
"test": "node test.js"
25+
},
26+
"devDependencies": {
27+
"mocha": ">= 2.1.0 < 3",
28+
"must": ">= 0.12 < 0.13",
29+
"sinon": ">= 1.12.2 < 2"
30+
}
3131
}

0 commit comments

Comments
 (0)