-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 963 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
46
47
{
"name": "worker",
"version": "0.4.0",
"description": "Dual-paradigm parallelization API for both node.js and the browser",
"license": "ISC",
"author": {
"name": "Blake Regalia",
"email": "[email protected]"
},
"browser": {
"./build/main/node/locals.js": false
},
"files": [
"build"
],
"main": "build/main/module.js",
"keywords": [
"worker",
"web worker",
"parallel",
"parallelization",
"concurrency",
"cluster"
],
"repository": "blake-regalia/worker.js.git",
"scripts": {
"build": "npx emk",
"test": "npx emk test"
},
"devDependencies": {
"browserify": "^16.3.0",
"chai": "^4.2.0",
"emk": "^1.7.2",
"eslint": "^6.1.0",
"eslint-plugin-jmacs": "^1.2.2",
"jmacs": "^1.2.7",
"mocha": "^6.2.0"
},
"dependencies": {
"colors": "^1.3.3",
"uuid": "^3.3.2",
"uuidv5": "^1.0.0"
},
"optionalDependencies": {
"shmmap": "^1.0.0"
}
}