-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.83 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
64
65
66
{
"name": "workerize-loader-wp5",
"version": "2.0.2",
"description": "Automatically move a module into a Web Worker (Webpack loader)",
"keywords": [
"webpack",
"loader",
"worker",
"web worker",
"thread",
"workerize"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/rafcontreras/workerize-loader-wp5.git"
},
"license": "MIT",
"author": "Rafael Contreras <[email protected]> (https://contrer.as)",
"main": "dist/index.js",
"files": [
"src",
"dist"
],
"scripts": {
"build": "microbundle --format cjs --no-compress --inline none src/*.js",
"format": "prettier --write \"./**/*.{js,ts,css,json,md,mdx,html,yml,yaml,pcss,jsx,tsx}\"",
"develop": "microbundle watch",
"prebuild": "rimraf dist",
"prepublishOnly": "npm run build",
"lint:package": "sort-package-json",
"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"
],
"dependencies": {
"loader-utils": "2.0.0"
},
"devDependencies": {
"@babel/eslint-parser": "7.14.7",
"eslint": "7.30.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-promise": "5.1.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"microbundle": "0.13.3",
"prettier": "2.3.2",
"prettier-plugin-sort-json": "0.0.2",
"rimraf": "3.0.2",
"sort-package-json": "1.50.0",
"webpack": "5.45.1"
},
"peerDependencies": {
"webpack": "5^"
},
"bugs": {
"url": "https://github.com/rafcontreras/workerize-loader/issues"
},
"homepage": "https://github.com/rafcontreras/workerize-loader#readme",
"directories": {
"test": "test"
}
}