-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
63 lines (63 loc) · 1.52 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "comlink-loader",
"version": "2.0.0",
"description": "Webpack loader: offload modules to Worker threads seamlessly using Comlink",
"main": "dist/comlink-loader.js",
"repository": "GoogleChromeLabs/comlink-loader",
"scripts": {
"build": "microbundle --inline none --format cjs --no-compress src/*.js",
"prepublishOnly": "npm run build",
"dev": "karmatic watch --no-headless",
"test": "npm run build && karmatic --no-coverage",
"release": "npm t && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish"
},
"eslintConfig": {
"extends": "developit",
"rules": {
"import/no-webpack-loader-syntax": false,
"indent": [
"error",
2
]
}
},
"files": [
"src",
"dist"
],
"keywords": [
"webpack",
"loader",
"worker",
"web worker",
"thread",
"comlink"
],
"author": "The Chromium Authors",
"contributors": [
{
"name": "Jason Miller",
"email": "developit@google.com"
},
{
"name": "Jasper Palfree",
"email": "jasper@wellcaffeinated.net"
}
],
"license": "Apache-2.0",
"devDependencies": {
"eslint": "^4.16.0",
"eslint-config-developit": "^1.1.1",
"jasmine-sinon": "^0.4.0",
"karmatic": "^1.4.0",
"microbundle": "^0.11.0",
"sinon": "^8.0.4",
"webpack": "^4.41.2"
},
"dependencies": {
"comlink": "^4.2.0",
"loader-utils": "^1.1.0",
"slash": "^3.0.0",
"worker-loader": "^2.0.0"
}
}