forked from developit/workerize-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.43 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
{
"name": "workerize-loader",
"version": "1.2.2",
"description": "Automatically move a module into a Web Worker (Webpack loader)",
"main": "dist/index.js",
"repository": "developit/workerize-loader",
"scripts": {
"build": "npm run -s build-loader && npm run -s build-rpc",
"build-loader": "microbundle --target node --format cjs --no-compress src/index.js ",
"build-rpc": "microbundle --format cjs --no-compress src/rpc-*.js",
"prepublishOnly": "npm run build",
"dev": "karmatic watch --no-headless",
"test": "npm run build && karmatic && NODE_ENV=production karmatic -p",
"release": "npm t && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish"
},
"browserslist": [
"IE 10",
"node 8"
],
"eslintConfig": {
"extends": "eslint-config-developit",
"rules": {
"jest/valid-expect": 0,
"no-console": 0
}
},
"files": [
"src",
"dist"
],
"keywords": [
"webpack",
"loader",
"worker",
"web worker",
"thread",
"workerize"
],
"author": "Jason Miller <[email protected]> (http://jasonformat.com)",
"license": "MIT",
"devDependencies": {
"eslint": "^7.2.0",
"eslint-config-developit": "^1.2.0",
"karmatic": "^1.4.0",
"microbundle": "^0.12.1",
"webpack": "^4.43.0"
},
"dependencies": {
"loader-utils": "^2.0.0"
},
"peerDependencies": {
"webpack": "*"
}
}