forked from privatenumber/esbuild-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.48 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
67
68
69
70
71
{
"name": "esbuild-loader",
"version": "0.0.0-semantic-release",
"description": "⚡️ Speed up your Webpack build with esbuild",
"keywords": [
"esbuild",
"webpack",
"loader",
"typescript",
"esnext"
],
"license": "MIT",
"repository": "privatenumber/esbuild-loader",
"funding": "https://github.com/privatenumber/esbuild-loader?sponsor=1",
"author": {
"name": "Hiroki Osame",
"email": "hiroki.osame@gmail.com"
},
"files": [
"dist"
],
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"test": "jest --coverage",
"lint": "eslint ."
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"eslint",
"jest --bail --findRelatedTests"
]
},
"peerDependencies": {
"webpack": "^4.40.0 || ^5.0.0"
},
"dependencies": {
"esbuild": "^0.11.19",
"joycon": "^3.0.1",
"json5": "^2.2.0",
"loader-utils": "^2.0.0",
"tapable": "^2.2.0",
"type-fest": "^1.0.1",
"webpack-sources": "^2.2.0"
},
"devDependencies": {
"@pvtnbr/eslint-config-typescript": "^0.1.16",
"@types/jest": "^26.0.22",
"@types/loader-utils": "^2.0.2",
"@types/webpack": "^4.41.27",
"css-loader": "^5.2.0",
"eslint": "^7.26.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"memfs": "^3.2.0",
"mini-css-extract-plugin": "^1.4.0",
"typescript": "^4.2.3",
"unionfs": "^4.4.0",
"webpack": "^4.44.2",
"webpack5": "npm:webpack@^5.0.0"
},
"eslintConfig": {
"extends": "@pvtnbr/eslint-config-typescript"
}
}