forked from w3reality/async-thread-worker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.14 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
{
"name": "async-thread-worker",
"version": "0.9.5-dev.5",
"description": "async/await abstraction for Web Workers",
"main": "dist/async-thread-worker.min.js",
"directories": {
"example": "examples"
},
"scripts": {
"dist": "es-pack build -d ./dist -m umd esm esm-compat",
"build": "es-pack build -m umd",
"build:esm": "es-pack build -m esm",
"build:esm:compat": "es-pack build -m esm-compat",
"test": "npm run test:verify && npm run test:main",
"test:verify": "es-pack build -m umd esm esm-compat --verify",
"test:main": "es-pack test --node --browser",
"dev": "es-pack build --dev"
},
"repository": {
"type": "git",
"url": "https://github.com/w3reality/async-thread-worker.git"
},
"keywords": [
"async/await",
"thread",
"Web Worker"
],
"author": "j-devel",
"license": "MIT",
"bugs": {
"url": "https://github.com/w3reality/async-thread-worker/issues"
},
"homepage": "https://github.com/w3reality/async-thread-worker",
"devDependencies": {
"es-pack-js": "0.5.14"
}
}