-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 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
64
65
66
67
68
{
"name": "webpack-json-access-optimizer",
"version": "0.0.0-semantic-release",
"description": "Tree-shake and minify JSON modules in Webpack",
"keywords": [
"webpack",
"plugin",
"optimize",
"json",
"minify",
"treeshake"
],
"license": "MIT",
"repository": "privatenumber/webpack-json-access-optimizer",
"funding": "https://github.com/privatenumber/webpack-json-access-optimizer?sponsor=1",
"author": {
"name": "Hiroki Osame",
"email": "hiroki.osame@gmail.com"
},
"files": [
"dist"
],
"main": "dist/index.js",
"scripts": {
"lint": "eslint .",
"build": "tsc",
"pretest": "npm run build",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint",
"jest --bail --findRelatedTests"
]
},
"peerDependencies": {
"webpack": "^5.37.0"
},
"dependencies": {
"@types/estree": "^0.0.50"
},
"devDependencies": {
"@pvtnbr/eslint-config": "^0.2.2",
"@types/jest": "^27.0.2",
"aggregate-error": "^4.0.0",
"es-jest": "^1.4.1",
"eslint": "^7.32.0",
"esno": "^0.10.1",
"fs-require": "^1.1.0",
"husky": "^4.3.8",
"jest": "^27.3.1",
"lint-staged": "^10.5.4",
"memfs": "^3.3.0",
"source-map": "^0.7.3",
"typescript": "^4.4.4",
"unionfs": "^4.4.0",
"webpack": "5.37.0",
"webpack-test-utils": "^1.0.0"
},
"eslintConfig": {
"extends": "@pvtnbr"
}
}