forked from parallel-js/parallel.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 868 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "paralleljs",
"version": "0.2.1",
"author": "Adam Savitzky <adam.savitzky@gmail.com>",
"contributors": [
"Sebastian Mayr <sebmaster16@gmail.com> (http://s3bmaster.blogspot.co.at/)"
],
"description": "parallel.js enables easy multi-thread processing in javascript",
"main": "lib/parallel.js",
"repository": {
"type": "git",
"url": "https://github.com/adambom/parallel.js.git"
},
"directories": {
"lib": "lib",
"test": "test"
},
"keywords": [
"parallel",
"spawn",
"map",
"thread",
"parallel.js",
"workers",
"webworkers"
],
"devDependencies": {
"jasmine-node": "x",
"q": "x"
},
"license": "BSD",
"scripts": {
"test": "jasmine-node --verbose test/specs"
},
"engines": {
"node": ">=0.9.10"
},
"testling" : {
"scripts": [
"test/lib/jasmine/jasmine.js",
"test/specs/*.js",
"test/runner.js"
]
}
}