-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 925 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 925 Bytes
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
{
"name": "esthread",
"version": "1.3.0",
"description": "Simple and modern web worker threading library.",
"main": "dist/thread.js",
"module": "dist/thread.mjs",
"types": "./dist/thread.d.ts",
"files": [
"dist",
"package.json",
"thread.ts",
"README.md"
],
"scripts": {
"build": "tsc thread.ts --target ES2016 --outDir dist --declaration && move dist\\thread.js dist\\thread.mjs && tsc thread.ts --target ES2015 --module umd --outDir dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MKGaru/ESThread.git"
},
"keywords": [
"thread",
"promise",
"async",
"webworker",
"worker"
],
"author": "MKGaru",
"license": "MIT",
"bugs": {
"url": "https://github.com/MKGaru/ESThread/issues"
},
"homepage": "https://github.com/MKGaru/ESThread#readme",
"devDependencies": {
"typescript": "^3.3.3"
},
"dependencies": {}
}