forked from webpack-contrib/worker-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.32 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.32 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "worker-rspack-loader",
"version": "3.1.4",
"description": "worker loader module for rspack",
"license": "MIT",
"repository": "rstackjs/worker-rspack-loader",
"author": "Tobias Koppers @sokra",
"homepage": "https://github.com/rstackjs/worker-rspack-loader",
"bugs": "https://github.com/rstackjs/worker-rspack-loader/issues",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/webpack"
},
"main": "dist/cjs.js",
"engines": {
"node": ">= 10.13.0"
},
"scripts": {
"bump": "npx bumpp",
"start": "npm run build -- -w",
"clean": "del-cli dist",
"prebuild": "npm run clean",
"build": "cross-env NODE_ENV=production babel src -d dist --copy-files",
"commitlint": "commitlint --from=master",
"security": "npm audit",
"lint:prettier": "prettier --list-different .",
"lint": "rslint",
"test:only": "cross-env NODE_ENV=test jest",
"test:watch": "npm run test:only -- --watch",
"test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage",
"pretest": "npm run lint",
"test": "npm run test:coverage",
"release": "standard-version",
"prepublishOnly": "pnpm run build",
"lint:write": "rslint --fix"
},
"files": [
"dist"
],
"peerDependencies": {
"@rspack/core": "0.x || 1.x || ^2.0.0-0",
"webpack": "^5.0.0"
},
"peerDependenciesMeta": {
"@rspack/core": {
"optional": true
},
"webpack": {
"optional": true
}
},
"dependencies": {
"loader-utils": "^2.0.0",
"schema-utils": "^3.1.0"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@rslint/core": "^0.5.1",
"babel-jest": "^26.6.3",
"cross-env": "^7.0.3",
"del": "^6.0.0",
"del-cli": "^3.0.1",
"express": "^4.17.1",
"get-port": "^5.1.1",
"html-webpack-plugin": "^4.5.0",
"jest": "^26.6.3",
"memfs": "^3.2.0",
"nanoid": "^3.1.20",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"puppeteer": "^7.0.4",
"standard-version": "^9.3.1",
"webpack": "^5.45.1"
},
"keywords": [
"webpack",
"rspack"
],
"jest": {
"testEnvironment": "node"
},
"packageManager": "pnpm@11.3.0"
}