-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.29 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
{
"name": "@dumpstate/web-worker-proxy",
"version": "0.1.8",
"description": "Web worker proxy for JavaScript objects.",
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"build:test": "npm run build:test:worker:ts && npm run build:test:worker:bundle",
"build:test:worker:ts": "tsc test/workers/foo.worker.ts --outDir build",
"build:test:worker:bundle": "browserify build/test/workers/foo.worker.js -o build/foo.worker.js",
"lint": "prettier --check .",
"prepublish": "npm run build",
"style:fix": "prettier --write .",
"test": "npm run build:test && karma start"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/dumpstate/web-worker-proxy.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/dumpstate/web-worker-proxy/issues"
},
"homepage": "https://github.com/dumpstate/web-worker-proxy#readme",
"devDependencies": {
"@types/expect.js": "^0.3.31",
"@types/mocha": "^10.0.3",
"browserify": "^17.0.0",
"expect.js": "^0.3.1",
"karma": "^6.4.2",
"karma-chrome-launcher": "^3.2.0",
"karma-mocha": "^2.0.1",
"karma-typescript": "^5.5.4",
"mocha": "^10.2.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
}
}