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
| {
| "name": "thread-loader",
| "version": "2.1.3",
| "description": "Runs the following loaders in a worker pool",
| "author": "Tobias Koppers @sokra",
| "license": "MIT",
| "main": "dist/cjs.js",
| "files": [
| "dist"
| ],
| "scripts": {
| "start": "npm run build -- -w",
| "clean": "del-cli dist",
| "build": "cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js'",
| "lint": "eslint --cache src test",
| "lint-staged": "lint-staged",
| "prebuild": "npm run clean",
| "prepare": "npm run build",
| "release": "standard-version",
| "security": "npm audit",
| "test": "jest",
| "test:watch": "jest --watch",
| "test:coverage": "jest --collectCoverageFrom='src/**/*.js' --coverage",
| "travis:coverage": "npm run test:coverage -- --runInBand",
| "travis:lint": "npm run lint && npm run security",
| "travis:test": "npm run test -- --runInBand",
| "appveyor:test": "npm run test",
| "webpack-defaults": "webpack-defaults"
| },
| "dependencies": {
| "neo-async": "^2.6.0",
| "loader-runner": "^2.3.1",
| "loader-utils": "^1.1.0"
| },
| "devDependencies": {
| "babel-cli": "^6.26.0",
| "babel-core": "^6.26.3",
| "babel-jest": "^23.6.0",
| "babel-loader": "^7.1.5",
| "babel-plugin-transform-object-rest-spread": "^6.26.0",
| "babel-polyfill": "^6.26.0",
| "babel-preset-env": "^1.7.0",
| "cross-env": "^5.2.0",
| "css-loader": "^1.0.1",
| "del-cli": "^1.1.0",
| "eslint": "^5.10.0",
| "eslint-config-webpack": "^1.2.5",
| "eslint-plugin-import": "^2.14.0",
| "jest": "^23.6.0",
| "lint-staged": "^8.1.0",
| "lodash": "^4.17.11",
| "mini-css-extract-plugin": "^0.5.0",
| "nodemon": "^1.18.8",
| "node-sass": "^4.11.0",
| "pre-commit": "^1.2.2",
| "sass-loader": "^7.1.0",
| "standard-version": "^4.4.0",
| "webpack": "^4.27.1",
| "webpack-cli": "^3.1.2",
| "webpack-defaults": "^1.6.0"
| },
| "engines": {
| "node": ">= 6.9.0 <7.0.0 || >= 8.9.0"
| },
| "peerDependencies": {
| "webpack": "^2.0.0 || ^3.0.0 || ^4.0.0"
| },
| "repository": "https://github.com/webpack-contrib/thread-loader.git",
| "bugs": "https://github.com/webpack-contrib/thread-loader/issues",
| "homepage": "https://github.com/webpack-contrib/thread-loader",
| "pre-commit": "lint-staged",
| "lint-staged": {
| "*.js": [
| "eslint --fix",
| "git add"
| ]
| }
| }
|
|