UNPKG

2.33 kBJSONView Raw
1{
2 "name": "worker-loader",
3 "version": "3.0.8",
4 "description": "worker loader module for webpack",
5 "license": "MIT",
6 "repository": "webpack-contrib/worker-loader",
7 "author": "Tobias Koppers @sokra",
8 "homepage": "https://github.com/webpack-contrib/worker-loader",
9 "bugs": "https://github.com/webpack-contrib/worker-loader/issues",
10 "funding": {
11 "type": "opencollective",
12 "url": "https://opencollective.com/webpack"
13 },
14 "main": "dist/cjs.js",
15 "engines": {
16 "node": ">= 10.13.0"
17 },
18 "scripts": {
19 "start": "npm run build -- -w",
20 "clean": "del-cli dist",
21 "prebuild": "npm run clean",
22 "build": "cross-env NODE_ENV=production babel src -d dist --copy-files",
23 "commitlint": "commitlint --from=master",
24 "security": "npm audit",
25 "lint:prettier": "prettier --list-different .",
26 "lint:js": "eslint --cache .",
27 "lint": "npm-run-all -l -p \"lint:**\"",
28 "test:only": "cross-env NODE_ENV=test jest",
29 "test:watch": "npm run test:only -- --watch",
30 "test:coverage": "npm run test:only -- --collectCoverageFrom=\"src/**/*.js\" --coverage",
31 "pretest": "npm run lint",
32 "test": "npm run test:coverage",
33 "prepare": "npm run build",
34 "release": "standard-version"
35 },
36 "files": [
37 "dist"
38 ],
39 "peerDependencies": {
40 "webpack": "^4.0.0 || ^5.0.0"
41 },
42 "dependencies": {
43 "loader-utils": "^2.0.0",
44 "schema-utils": "^3.0.0"
45 },
46 "devDependencies": {
47 "@babel/cli": "^7.12.13",
48 "@babel/core": "^7.12.13",
49 "@babel/preset-env": "^7.12.13",
50 "@commitlint/cli": "^11.0.0",
51 "@commitlint/config-conventional": "^11.0.0",
52 "@webpack-contrib/eslint-config-webpack": "^3.0.0",
53 "babel-jest": "^26.6.3",
54 "cross-env": "^7.0.3",
55 "del": "^6.0.0",
56 "del-cli": "^3.0.1",
57 "eslint": "^7.19.0",
58 "eslint-config-prettier": "^7.2.0",
59 "eslint-plugin-import": "^2.22.1",
60 "express": "^4.17.1",
61 "get-port": "^5.1.1",
62 "html-webpack-plugin": "^4.5.0",
63 "husky": "^4.3.0",
64 "jest": "^26.6.3",
65 "lint-staged": "^10.5.4",
66 "memfs": "^3.2.0",
67 "nanoid": "^3.1.20",
68 "npm-run-all": "^4.1.5",
69 "prettier": "^2.2.1",
70 "puppeteer": "^7.0.4",
71 "standard-version": "^9.1.0",
72 "webpack": "^5.21.2"
73 },
74 "keywords": [
75 "webpack"
76 ],
77 "jest": {
78 "testEnvironment": "node"
79 }
80}