-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.04 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
{
"name": "worker-with-import-map",
"version": "2.0.1",
"type": "module",
"homepage": "https://github.com/kungfooman/worker-with-import-map",
"description": "Use importmaps in a worker interface",
"keywords": ["Worker", "with", "importmap", "import", "map", "ESM", "ESM shim", "polyfill"],
"author": "Hermann Rolfes <kungfooman>",
"contributors": [
"Abbey Hawk Sparrow <khrome>(http://abbeyhawksparrow.com)"
],
"repository": {
"type": "git",
"url": "[email protected]:kungfooman/worker-with-import-map.git"
},
"bugs": {
"url": "https://github.com/kungfooman/worker-with-import-map/issues"
},
"license": "MIT",
"devDependencies": {
"@environment-safe/jsdoc-builder": "^0.0.2",
"eslint": "^8.43.0"
},
"scripts": {
"lint": "eslint src/*.mjs test/*.mjs",
"build-docs": "build-jsdoc docs",
"build-types": "build-jsdoc types"
},
"dependencies": {
"browser-or-node": "^2.1.1",
"web-worker": "^1.3.0"
}
}