-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.35 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
{
"name": "entry-file-plugin",
"version": "0.0.0-semantic-release",
"description": "Create an entry-file in your Webpack build to consolidate entry-point exports",
"keywords": [
"webpack",
"plugin",
"entry",
"file"
],
"license": "MIT",
"repository": "privatenumber/entry-file-plugin",
"funding": "https://github.com/privatenumber/entry-file-plugin?sponsor=1",
"author": {
"name": "Hiroki Osame",
"email": "hiroki.osame@gmail.com"
},
"files": [
"dist"
],
"main": "dist/index.js",
"scripts": {
"lint": "eslint .",
"build": "tsc",
"test": "npm run test:wp4 && npm run test:wp5",
"test:wp4": "jest",
"test:wp5": "WEBPACK=5 jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint",
"jest --bail --findRelatedTests"
]
},
"dependencies": {
"aggregate-error": "^3.1.0",
"webpack-sources": "^3.2.0",
"zod": "^3.7.1"
},
"devDependencies": {
"@pvtnbr/eslint-config-typescript": "^0.1.15",
"@types/jest": "^26.0.23",
"@types/webpack": "^4.41.28",
"es-jest": "^1.2.0",
"eslint": "^7.24.0",
"husky": "^4.3.8",
"jest": "^27.0.6",
"lint-staged": "^10.5.4",
"memfs": "^3.2.2",
"typescript": "^4.2.4",
"unionfs": "^4.4.0",
"webpack": "4.42.0",
"webpack5": "npm:webpack@5.10.1"
},
"eslintConfig": {
"extends": "@pvtnbr/eslint-config-typescript"
}
}