forked from developit/workerize-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.23 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
{
"name": "workerize-proxy-loader",
"version": "1.1.0",
"description": "Automatically move a module into a Web Worker (Webpack loader) using proxies",
"main": "dist/index.js",
"repository": "jamesknelson/workerize-loader",
"scripts": {
"build": "microbundle --target node --format cjs --no-compress src/*.js",
"prepublishOnly": "npm run build",
"dev": "karmatic watch --no-headless",
"test": "npm run build && karmatic",
"release": "npm t && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish"
},
"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": "^5.0.0",
"eslint-config-developit": "^1.1.1",
"karmatic": "^1.2.0",
"microbundle": "^0.6.0",
"webpack": "^4.17.1"
},
"dependencies": {
"loader-utils": "^1.1.0"
},
"peerDependencies": {
"webpack": "*"
}
}