-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
60 lines (60 loc) · 1.44 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
{
"name": "json-perf-loader",
"version": "1.1.0",
"description": "A loader for webpack to load JSON with performance advice",
"license": "MIT",
"repository": "justjavac/json-perf-loader",
"author": "justjavac",
"homepage": "https://github.com/justjavac/json-perf-loader",
"bugs": "https://github.com/justjavac/json-perf-loader/issues",
"main": "src/index.js",
"engines": {
"node": "> 8.9.0"
},
"scripts": {
"clean": "rimraf -rf coverage",
"lint": "prettier \"{**/*,*}.{js,json,md,yml}\" --list-different",
"format": "prettier \"{**/*,*}.{js,json,md,yml}\" --write",
"test": "cross-env NODE_ENV=test jest",
"test:coverage": "cross-env NODE_ENV=test jest --collectCoverageFrom=\"src/**/*.js\" --coverage"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,json,md,yml}": [
"prettier --write",
"git add"
]
},
"files": [
"src"
],
"peerDependencies": {
"webpack": ">=4.0.0"
},
"dependencies": {
"loader-utils": "^2.0.0",
"schema-utils": "^3.0.0"
},
"devDependencies": {
"codecov": "^3.8.3",
"cross-env": "^7.0.2",
"husky": "^4.2.5",
"jest": "^27.5.1",
"lint-staged": "^10.3.0",
"memory-fs": "^0.5.0",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"webpack4": "npm:webpack@4",
"webpack5": "npm:webpack@5"
},
"keywords": [
"webpack",
"webpack-loader",
"json",
"perf"
]
}