forked from Calvin-LL/webpack-query-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.9 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
72
73
74
{
"name": "webpack-query-loader",
"version": "2.0.5",
"description": "Run loaders depending on their query",
"keywords": [
"webpack",
"loader",
"conditional",
"query",
"resourceQuery",
"parameter",
"url"
],
"main": "dist/cjs.js",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"lint": "eslint --ext .ts .",
"lint:fix": "eslint --fix --ext .ts .",
"test": "tsc --project tsconfig.test-build.json && jest",
"release": "HUSKY_SKIP_HOOKS=1 standard-version"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"author": {
"name": "Calvin Liang",
"email": "[email protected]",
"url": "https://calvin.sh"
},
"repository": "Calvin-LL/webpack-query-loader",
"bugs": "https://github.com/Calvin-LL/webpack-query-loader/issues",
"homepage": "https://github.com/Calvin-LL/webpack-query-loader",
"license": "MIT",
"engines": {
"node": ">= 10.13.0"
},
"peerDependencies": {
"webpack": "^4.0.0 || ^5.0.0"
},
"dependencies": {
"loader-utils": "^2.0.0",
"schema-utils": "^3.0.0"
},
"devDependencies": {
"@calvin-l/webpack-loader-test-util": "^1.3.1",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/jest": "^26.0.15",
"@types/loader-utils": "^2.0.1",
"@types/node": "^14.14.9",
"@types/webpack": "^4.41.25",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"commitizen": "^4.2.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.14.0",
"eslint-plugin-import-helpers": "^1.1.0",
"file-loader": "^6.2.0",
"husky": "^4.3.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.2",
"prettier": "^2.2.0",
"standard-version": "^9.0.0",
"ts-jest": "^26.4.4",
"typescript": "^4.1.2",
"url-loader": "^4.1.1",
"webpack": "^4.44.2"
}
}