-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
37 lines (37 loc) · 927 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
{
"name": "@lukeschaefer/worker-bee",
"version": "1.0.5",
"description": "Tiny utility for pushing tasks into an async Web Worker",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npx tsc",
"test": "karma start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lukeschaefer/WorkerBee.git"
},
"keywords": [
"Web Worker",
"async",
"threading"
],
"author": "Luke Schaefer",
"license": "ISC",
"bugs": {
"url": "https://github.com/lukeschaefer/WorkerBee/issues"
},
"homepage": "https://github.com/lukeschaefer/WorkerBee#readme",
"devDependencies": {
"@types/jasmine": "^3.4.0",
"jasmine-core": "^3.3.0",
"karma": "^6.3.16",
"karma-chrome-launcher": "^3.1.0",
"karma-cli": "^2.0.0",
"karma-jasmine": "^2.0.1",
"karma-typescript": "^5.5.3",
"typescript": "^4.5.5"
},
"dependencies": {}
}