-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
89 lines (89 loc) · 2.38 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
89
{
"name": "webpack-cdn-upload-plugin",
"version": "2.2.1",
"description": "A powerful webpack plugin which can help you to upload your assets into cdn.",
"main": "lib/index.js",
"scripts": {
"test": "jest --coverage --maxWorkers=4",
"jest": "jest",
"lint": "eslint -c ./.eslintrc.typescript.js 'src/**/*.ts' --fix && eslint ./ --fix",
"precommit": "npm run lint",
"prepush": "npm t",
"prepublishOnly": "npm run lint && npm t",
"preversion": "npm test",
"version": "npm run build && git add -A lib",
"postversion": "git push --no-verify && git push --tags --no-verify",
"build": "tsc --p ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/toxic-johann/webpack-cdn-upload-plugin.git"
},
"keywords": [
"webpack",
"cdn",
"upload",
"plugin"
],
"author": "toxic-johann",
"license": "MIT",
"bugs": {
"url": "https://github.com/toxic-johann/webpack-cdn-upload-plugin/issues"
},
"homepage": "https://github.com/toxic-johann/webpack-cdn-upload-plugin#readme",
"dependencies": {
"escape-string-regexp": "^4.0.0",
"lodash": "^4.17.15",
"nanoid": "^3.1.10",
"webpack-log": "^3.0.1"
},
"devDependencies": {
"@types/jest": "^26.0.3",
"@types/webpack": "^4.41.18",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"css-loader": "^3.6.0",
"eslint": "^7.4.0",
"eslint-config-airbnb-typescript": "^8.0.2",
"eslint-config-egg": "^8.0.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.17.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^6.0.0",
"html-loader": "^1.1.0",
"html-webpack-plugin": "^4.3.0",
"husky": "^4.2.5",
"jest": "^26.1.0",
"memory-fs": "^0.5.0",
"preload-webpack-plugin": "^3.0.0-beta.4",
"style-loader": "^1.2.1",
"ts-jest": "^26.1.1",
"typescript": "^3.9.6",
"webpack": "^4.43.0"
},
"peerDependencies": {
"webpack": "^4.43.0"
},
"jest": {
"modulePaths": [
"./"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"moduleDirectories": [
"node_modules",
"bower_components"
],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"testURL": "http://localhost",
"transform": {
"^.+\\.tsx?$": "ts-jest",
".jsx?$": "babel-jest"
}
}
}