-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.31 KB
/
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
48
49
{
"name": "@tbela99/workerize",
"description": "Export functions and class into a web worker",
"version": "2.0.0",
"main": "dist/node/index.js",
"browser": "dist/web/index.js",
"module": "dist/node/index.js",
"type": "module",
"typings": "dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"debug": "web-test-runner \"test/**/*.test.js\" --manual --open --node-resolve --root-dir=./test/",
"test": "web-test-runner \"test/**/*.test.js\" --node-resolve --root-dir=./test/; mocha \"test/*.node.mjs\""
},
"devDependencies": {
"@esm-bundle/chai": "^4.3.4-fix.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-typescript": "^11.1.1",
"@types/mocha": "^10.0.1",
"@web/test-runner": "^0.16.1",
"glob": "^10.3.0",
"mocha": "^10.2.0",
"rollup": "^3.25.1",
"rollup-plugin-dts": "^5.3.0",
"tslib": "^2.5.3"
},
"license": "MIT OR LGPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/tbela99/workerize.git"
},
"bugs": {
"url": "https://github.com/tbela99/workerize/issues"
},
"homepage": "https://github.com/tbela99/workerize#readme",
"keywords": [
"worker",
"web-worker",
"node-worker",
"thread",
"browser",
"node",
"async"
],
"author": "Thierry Bela",
"files": [
"dist"
]
}