-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
96 lines (96 loc) · 2.43 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
90
91
92
93
94
95
96
{
"name": "karma-vite",
"version": "1.0.5",
"description": "A karma plugin. Transform es module by using vite.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"dev": "tsx scripts/build.ts --watch --coreOnly",
"dev:all": "tsx scripts/build.ts --watch",
"build": "tsc && tsx scripts/build.ts",
"lint": "eslint . --ext .js,.ts",
"format": "prettier --write --ignore-unknown .",
"test": "jest",
"ci-publish": "tsx scripts/publishCI.ts",
"prepare": "husky install",
"prepublishOnly": "npm run build"
},
"lint-staged": {
"*": [
"prettier --write --ignore-unknown"
],
"*.(j|t)s": [
"eslint --ext .js,.ts"
]
},
"engines": {
"node": ">=12.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/credred/karma-vite.git"
},
"keywords": [
"karma-plugin",
"karma-vite",
"vite"
],
"author": "credred",
"license": "MIT",
"bugs": {
"url": "https://github.com/credred/karma-vite/issues"
},
"homepage": "https://github.com/credred/karma-vite#readme",
"dependencies": {
"connect": "^3.7.0",
"local-pkg": "^0.4.2",
"vite-plugin-istanbul": "^3.0.1"
},
"devDependencies": {
"@babel/parser": "^7.19.6",
"@babel/types": "^7.19.4",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@types/connect": "^3.4.35",
"@types/jest": "^29.2.0",
"@types/karma": "^6.3.3",
"@types/lodash": "^4.14.186",
"@types/node": "^18.11.3",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"cac": "^6.7.14",
"chalk": "^4.1.2",
"di": "^0.0.1",
"eslint": "^8.26.0",
"eslint-define-config": "^1.7.0",
"eslint-plugin-jest": "^27.1.3",
"eslint-plugin-node": "^11.1.0",
"execa": "^6.1.0",
"husky": "^8.0.1",
"jest": "^29.2.1",
"jest-environment-jsdom": "^29.2.1",
"lint-staged": "^13.0.3",
"lodash": "^4.17.21",
"log4js": "^6.7.0",
"magic-string": "^0.26.7",
"minimist": "^1.2.7",
"picocolors": "^1.0.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"supertest": "^6.3.0",
"ts-jest": "^29.0.3",
"tsx": "^3.10.4",
"typescript": "^4.8.4",
"vite": "^4.0.4",
"vite-plugin-dts": "^1.6.6"
},
"peerDependencies": {
"karma": "^6.0.0",
"vite": "2 || 3 || 4 || 5"
}
}