-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.16 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@planjs/webpack-upload-loader",
"version": "0.0.1",
"description": "Upload files to oss after webpack is packaged",
"main": "lib/index.js",
"scripts": {
"start": "tsc -w",
"prepare": "tsc",
"commit": "git-cz",
"example": "cd example && webpack",
"release": "standard-version",
"lint:fix": "eslint src --ext .ts --fix",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/planjs/webpack-upload-loader.git"
},
"keywords": [
"webpack",
"plugin",
"oss",
"webpack-upload-loader"
],
"author": "fupeng <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/planjs/webpack-upload-loader/issues"
},
"homepage": "https://github.com/planjs/webpack-upload-loader#readme",
"engines": {
"node": ">=6.9"
},
"dependencies": {
"@types/loader-utils": "^2.0.1",
"@types/schema-utils": "^2.4.0",
"globby": "^11.0.1",
"loader-utils": "^2.0.0",
"memfs": "^3.2.0",
"mime-types": "^2.1.27",
"ora": "^4.0.5",
"schema-utils": "^2.7.0",
"colors": "^1.4.0"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.1",
"@types/node": "^14.0.26",
"@types/webpack": "^4.41.21",
"@typescript-eslint/parser": "^3.7.0",
"babel-jest": "^26.2.2",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"file-loader": "^6.0.0",
"husky": "^4.2.5",
"jest": "26.1.0",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"standard-version": "^8.0.2",
"typescript": "^3.9.7",
"webpack": "4.44.0",
"webpack-cli": "^3.3.12"
},
"peerDependencies": {
"webpack": ">=4.0.0 < 6.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"git add"
]
}
}