Skip to content

Commit 86e3557

Browse files
committed
update metadata
1 parent e34a49b commit 86e3557

File tree

4 files changed

+28
-54
lines changed

4 files changed

+28
-54
lines changed

LICENSE

Lines changed: 19 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,21 @@
1-
Copyright (c) 2017, Adam Savitzky
2-
All rights reserved.
1+
The MIT License (MIT)
32

4-
Redistribution and use in source and binary forms, with or without
5-
modification, are permitted provided that the following conditions are met:
6-
7-
* Redistributions of source code must retain the above copyright
8-
notice, this list of conditions and the following disclaimer.
9-
10-
* Redistributions in binary form must reproduce the above copyright
11-
notice, this list of conditions and the following disclaimer in the
12-
documentation and/or other materials provided with the distribution.
13-
14-
* Neither the name of the organization nor the
15-
names of its contributors may be used to endorse or promote products
16-
derived from this software without specific prior written permission.
3+
Copyright (c) 2017-present Parallel.js Maintainers
174

18-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
19-
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20-
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21-
DISCLAIMED. IN NO EVENT SHALL ADAM SAVITZKY BE LIABLE FOR ANY
22-
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23-
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
24-
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
25-
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26-
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27-
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 3 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,6 @@
1313

1414
**Easy Parallel Computing with Javascript**
1515

16-
> Please note that version 0.2.1 is 2 years old
17-
18-
**Update: September 2016**
19-
20-
> New forces are put in place to drive the code forward.
21-
22-
---
23-
2416
Parallel.js is a library for to make parallel computing in Javascript simple. It works in Node.js and in the Web Browser.
2517

2618
Parallel takes advantage of Web Workers for the web, and child processes for Node.
@@ -29,14 +21,8 @@ Parallel takes advantage of Web Workers for the web, and child processes for Nod
2921

3022
## Installation
3123

32-
You can download the raw javascript file [here](https://raw.github.com/parallel-js/parallel.js/master/lib/parallel.js)
33-
34-
Just include it via a script tag in your HTML page
35-
36-
**Parallel.js is also available as a node module**
37-
3824
```bash
39-
npm install paralleljs --save
25+
npm install paralleljs
4026
```
4127

4228
## Usage
@@ -199,7 +185,7 @@ object.
199185
**Example**
200186
201187
```js
202-
let p = new Parallel([1, 2, 3], { evalPath: 'https://raw.github.com/adambom/parallel.js/master/lib/eval.js' });
188+
let p = new Parallel([1, 2, 3], { evalPath: 'https://raw.github.com/parallel-js/parallel.js/master/lib/eval.js' });
203189

204190
const cubeRoot = n => Math.pow(n, 1 / 3);
205191

@@ -250,7 +236,7 @@ p.map(d => d * global.parallel.a);
250236
251237
## Compatibility
252238
253-
[![browser support](https://ci.testling.com/adambom/parallel.js.png)](https://ci.testling.com/adambom/parallel.js)
239+
[![browser support](https://ci.testling.com/parallel-js/parallel.js.png)](https://ci.testling.com/parallel-js/parallel.js)
254240
255241
---
256242
@@ -262,9 +248,3 @@ Parallel.js is made up of four contributors:
262248
[Mathias Rangel Wulff (Mathias)](https://github.com/mathiasrw)
263249
[Amila Welihinda (amilajack)](https://github.com/amilajack)
264250
[MaXwell Falstein (MaX)](https://github.com/MaXwellFalstein)
265-
266-
---
267-
268-
## License
269-
270-
[Please find the license in the GitHub repository](https://github.com/parallel-js/parallel.js/blob/master/LICENSE).

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
"Sebastian Mayr <sebmaster16@gmail.com> (http://s3bmaster.blogspot.co.at/)",
88
"Amila Welihinda <amilajack@gmail.com> (https://amilajack.com/)"
99
],
10-
"license": "BSD",
10+
"license": "MIT",
1111
"scripts": {
1212
"lint": "eslint lib",
1313
"test": "npm run lint && jasmine-node --verbose test/specs"
1414
},
1515
"repository": {
1616
"type": "git",
17-
"url": "https://github.com/adambom/parallel.js.git"
17+
"url": "https://github.com/parallel-js/parallel.js.git"
1818
},
1919
"directories": {
2020
"lib": "lib",
@@ -35,8 +35,8 @@
3535
"babel-eslint": "^10.1.0",
3636
"eslint": "^6.8.0",
3737
"eslint-config-bliss": "^4.7.0",
38-
"jasmine-node": "x",
39-
"q": "x"
38+
"jasmine-node": "^3.0.0",
39+
"q": "^1.5.1"
4040
},
4141
"browser": {
4242
"child_process": false

yarn.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1091,7 +1091,7 @@ jasmine-growl-reporter@~2.0.0:
10911091
dependencies:
10921092
growl "^1.10.5"
10931093

1094-
jasmine-node@x:
1094+
jasmine-node@^3.0.0:
10951095
version "3.0.0"
10961096
resolved "https://registry.yarnpkg.com/jasmine-node/-/jasmine-node-3.0.0.tgz#f12b6fdd24633402ec23e8ea6fef6ffbcb464f90"
10971097
integrity sha512-vUa5Q7bQYwHHqi6FlJYndiKqZp+d+c3MKe0QUMwwrC4JRmoRV3zkg0buxB/uQ6qLh0NO34TNstpAnvaZ6xGlAA==
@@ -1465,7 +1465,7 @@ punycode@^2.1.0:
14651465
resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
14661466
integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==
14671467

1468-
q@x:
1468+
q@^1.5.1:
14691469
version "1.5.1"
14701470
resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7"
14711471
integrity sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=

0 commit comments

Comments
 (0)