-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
package.json
106 lines (106 loc) · 2.69 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
97
98
99
100
101
102
103
104
105
106
{
"name": "vitest",
"version": "0.0.50",
"description": "A blazing fast unit test framework powered by Vite",
"keywords": [
"vite",
"vite-node",
"test",
"jest"
],
"homepage": "https://github.com/antfu/vitest#readme",
"bugs": {
"url": "https://github.com/antfu/vitest/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/antfu/vitest.git"
},
"funding": "https://github.com/sponsors/antfu",
"license": "MIT",
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./*": "./*"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"vitest": "./bin/vitest.mjs"
},
"files": [
"dist",
"bin",
"*.d.ts"
],
"scripts": {
"build": "tsup --dts --minify-whitespace --minify-syntax",
"coverage": "node bin/vitest.mjs -r test/core --coverage",
"dev": "tsup --watch src",
"lint": "eslint \"{src,test}/**/*.ts\"",
"prepare": "esmo scripts/generate-types.ts",
"prepublishOnly": "nr build",
"release": "bumpp --commit --push --tag && esmo scripts/publish.ts",
"test": "node bin/vitest.mjs -r test/core",
"test:all": "pnpm -r --stream --filter !vitest run test --"
},
"dependencies": {
"@antfu/utils": "^0.3.0",
"@jest/test-result": "^27.4.2",
"@types/chai": "^4.3.0",
"@types/sinon-chai": "^3.2.6",
"c8": "^7.10.0",
"chai": "^4.3.4",
"chai-subset": "^1.6.0",
"cli-truncate": "^3.1.0",
"diff": "^5.0.0",
"elegant-spinner": "^3.0.0",
"fast-glob": "^3.2.7",
"figures": "^4.0.0",
"find-up": "^6.2.0",
"happy-dom": "^2.24.5",
"jest-snapshot": "^27.4.2",
"jest-util": "^27.4.2",
"jsdom": "^19.0.0",
"log-symbols": "^4.1.0",
"log-update": "^5.0.0",
"mlly": "^0.3.15",
"picocolors": "^1.0.0",
"sade": "^1.7.4",
"sinon": "^12.0.1",
"sinon-chai": "^3.7.0",
"source-map": "^0.7.3",
"source-map-support": "^0.5.21",
"strip-ansi": "^7.0.1"
},
"devDependencies": {
"@antfu/eslint-config": "^0.12.2",
"@antfu/ni": "^0.11.1",
"@types/chai-subset": "^1.3.3",
"@types/diff": "^5.0.1",
"@types/jsdom": "^16.2.13",
"@types/node": "^16.11.12",
"@types/sade": "^1.7.3",
"@types/sinon": "^10.0.6",
"@types/source-map-support": "^0.5.4",
"bumpp": "^7.1.1",
"eslint": "^8.4.1",
"esno": "^0.12.1",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"tsup": "^5.10.3",
"typescript": "^4.5.2",
"vite": "^2.7.1"
},
"peerDependencies": {
"vite": "^2.7.1"
},
"engines": {
"node": ">=16.0.0"
}
}