-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.18 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 2.18 KB
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
{
"name": "vitest-jest-mocha",
"version": "1.0.0",
"description": "This is a repo for easy performance and UX comparison of Vitest, Jest and Mocha",
"main": "index.js",
"type": "module",
"scripts": {
"jest": "NODE_OPTIONS=--experimental-vm-modules jest --config=jest.js.config.js",
"vitest": "vitest run --config=vitest.js.config.js",
"mocha": "mocha --config .mocharc.cjs",
"ts-jest": "jest --config=jest.ts.config.js",
"ts-vitest": "vitest run --config=vitest.ts.config.js",
"ts-mocha": "mocha --config .mocharc.ts.cjs",
"jsx-jest": "NODE_OPTIONS=--experimental-vm-modules jest --config=jest.jsx.config.js",
"jsx-vitest": "vitest run --config=vitest.jsx.config.js",
"jsx-mocha": "mocha --config .mocharc.jsx.cjs",
"tsx-jest": "NODE_OPTIONS=--experimental-vm-modules jest --config=jest.tsx.config.js",
"tsx-vitest": "vitest run --config=vitest.tsx.config.js",
"tsx-mocha": "mocha --experimental-specifier-resolution=node --config .mocharc.tsx.cjs",
"examine": "ts-node --esm examineReports.ts",
"tsx-jest-watch": "NODE_OPTIONS=--experimental-vm-modules jest --config=jest.tsx.config.js --watch",
"tsx-vitest-watch": "vitest watch --config=vitest.tsx.config.js",
"tsx-mocha-watch": "echo See https://mochajs.org/#current-limitations",
"full-test": "./test_all.sh && npm run examine"
},
"author": "Justin Farrell",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/plugin-transform-runtime": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"@babel/preset-react": "^7.23.3",
"@babel/register": "^7.22.15",
"@types/jest": "^29.5.8",
"@types/mocha": "^10.0.4",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-junit": "^16.0.0",
"jsdom-global": "^3.0.2",
"mocha": "^10.2.0",
"react-test-renderer": "^18.2.0",
"regenerator-runtime": "^0.14.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"vitest": "^0.34.6",
"xml-js": "^1.6.11"
},
"dependencies": {
"@testing-library/react": "^14.1.0",
"@vitejs/plugin-react": "^4.1.1",
"chai": "^4.3.10",
"react": "^18.2.0"
}
}