-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.2 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
{
"name": "async-css-plugin",
"version": "1.1.10",
"description": "Minimal webpack plugin that transforms links to css files such that they are loaded asynchronously.",
"keywords": [
"async",
"css",
"stylesheet",
"webpack",
"webpack-plugin"
],
"homepage": "https://github.com/andreashuber69/async-css-plugin/blob/develop/README.md#----async-css-plugin",
"repository": {
"type": "git",
"url": "git+https://github.com/andreashuber69/async-css-plugin.git"
},
"bugs": {
"url": "https://github.com/andreashuber69/async-css-plugin/issues"
},
"license": "MIT",
"author": {
"name": "Andreas Huber"
},
"engines": {
"node": ">=12.22"
},
"main": "dist/index.js",
"files": [
"/dist/",
"!/**/*.map",
"/*.md"
],
"scripts": {
"prelint": "cspell '**' && markdownlint '**/*.md'",
"lint": "eslint",
"build": "tsc && vite build",
"test-no-coverage": "vitest --run",
"test": "vitest --run --coverage",
"show-coverage": "vite 'coverage/lcov-report' --logLevel error --open",
"ci": "npm run lint && npm run build && npm test",
"preversion": "git checkout develop && git push && git pull",
"version": "git flow release start v`cat package.json | jq -r '.version' && git stash push >/dev/null 2>&1` && git stash pop",
"postversion": "git commit -a -m \"chore: start release v`cat package.json | jq -r '.version'`\"",
"finish-release": "git flow release finish -p -m \"chore: finish release\" v`cat package.json | jq -r '.version'`"
},
"devDependencies": {
"@andreashuber69/eslint-config": "^2.1.5",
"@types/jsdom": "^21.1.7",
"@types/webpack": "^5.28.5",
"@vitest/coverage-istanbul": "^3.0.7",
"@vue/cli-service": "^5.0.8",
"coveralls": "^3.1.1",
"cspell": "^8.17.5",
"css-loader": "^7.1.2",
"html-webpack-plugin": "^5.6.3",
"jsdom": "^26.0.0",
"markdownlint-cli": "^0.44.0",
"mini-css-extract-plugin": "^2.9.2",
"ts-node": "^10.9.2",
"typescript": "^5.8.2",
"vite": "^6.2.0",
"vite-plugin-dts": "^4.5.3",
"vitest": "^3.0.7",
"vue": "^3.5.13",
"webpack": "^5.98.0"
},
"peerDependencies": {
"html-webpack-plugin": ">=3.2.0",
"webpack": ">=4.4.0"
}
}