-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.66 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
{
"name": "@calvin-l/webpack-loader-util",
"version": "1.0.2",
"description": "Webpack loader utilities",
"keywords": [
"webpack",
"loader"
],
"homepage": "https://github.com/Calvin-LL/webpack-loader-util",
"bugs": "https://github.com/Calvin-LL/webpack-loader-util/issues",
"repository": "Calvin-LL/webpack-loader-util",
"license": "MIT",
"author": {
"name": "Calvin Liang",
"email": "npm@calvin.sh",
"url": "https://calvin.sh"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"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"
},
"engines": {
"node": ">= 10.13.0"
},
"peerDependencies": {
"webpack": "^4.0.0 || ^5.0.0"
},
"dependencies": {
"@types/loader-utils": "^2.0.1",
"loader-utils": "^2.0.0"
},
"devDependencies": {
"@calvin-l/webpack-loader-test-util": "^3.0.0",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/file-loader": "^5.0.1",
"@types/jest": "^26.0.24",
"@types/node": "^16.4.12",
"@types/webpack": "^4.41.24",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.28.3",
"commitizen": "^4.2.4",
"eslint": "^7.32.0",
"eslint-plugin-import-helpers": "^1.1.0",
"husky": "^4.3.0",
"jest": "^26.6.2",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2",
"standard-version": "^9.3.1",
"ts-jest": "^26.5.6",
"typescript": "^4.3.5",
"webpack": "^4.44.2"
}
}