source: frontend/node_modules/@jest/core/package.json

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 13 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 2.3 KB
Line 
1{
2 "name": "@jest/core",
3 "description": "Delightful JavaScript Testing.",
4 "version": "27.5.1",
5 "main": "./build/jest.js",
6 "types": "./build/jest.d.ts",
7 "exports": {
8 ".": {
9 "types": "./build/jest.d.ts",
10 "default": "./build/jest.js"
11 },
12 "./package.json": "./package.json"
13 },
14 "dependencies": {
15 "@jest/console": "^27.5.1",
16 "@jest/reporters": "^27.5.1",
17 "@jest/test-result": "^27.5.1",
18 "@jest/transform": "^27.5.1",
19 "@jest/types": "^27.5.1",
20 "@types/node": "*",
21 "ansi-escapes": "^4.2.1",
22 "chalk": "^4.0.0",
23 "emittery": "^0.8.1",
24 "exit": "^0.1.2",
25 "graceful-fs": "^4.2.9",
26 "jest-changed-files": "^27.5.1",
27 "jest-config": "^27.5.1",
28 "jest-haste-map": "^27.5.1",
29 "jest-message-util": "^27.5.1",
30 "jest-regex-util": "^27.5.1",
31 "jest-resolve": "^27.5.1",
32 "jest-resolve-dependencies": "^27.5.1",
33 "jest-runner": "^27.5.1",
34 "jest-runtime": "^27.5.1",
35 "jest-snapshot": "^27.5.1",
36 "jest-util": "^27.5.1",
37 "jest-validate": "^27.5.1",
38 "jest-watcher": "^27.5.1",
39 "micromatch": "^4.0.4",
40 "rimraf": "^3.0.0",
41 "slash": "^3.0.0",
42 "strip-ansi": "^6.0.0"
43 },
44 "devDependencies": {
45 "@jest/test-sequencer": "^27.5.1",
46 "@jest/test-utils": "^27.5.1",
47 "@types/exit": "^0.1.30",
48 "@types/graceful-fs": "^4.1.2",
49 "@types/micromatch": "^4.0.1",
50 "@types/rimraf": "^3.0.0"
51 },
52 "peerDependencies": {
53 "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
54 },
55 "peerDependenciesMeta": {
56 "node-notifier": {
57 "optional": true
58 }
59 },
60 "engines": {
61 "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
62 },
63 "repository": {
64 "type": "git",
65 "url": "https://github.com/facebook/jest",
66 "directory": "packages/jest-core"
67 },
68 "bugs": {
69 "url": "https://github.com/facebook/jest/issues"
70 },
71 "homepage": "https://jestjs.io/",
72 "license": "MIT",
73 "keywords": [
74 "ava",
75 "babel",
76 "coverage",
77 "easy",
78 "expect",
79 "facebook",
80 "immersive",
81 "instant",
82 "jasmine",
83 "jest",
84 "jsdom",
85 "mocha",
86 "mocking",
87 "painless",
88 "qunit",
89 "runner",
90 "sandboxed",
91 "snapshot",
92 "tap",
93 "tape",
94 "test",
95 "testing",
96 "typescript",
97 "watch"
98 ],
99 "publishConfig": {
100 "access": "public"
101 },
102 "gitHead": "67c1aa20c5fec31366d733e901fee2b981cb1850"
103}
Note: See TracBrowser for help on using the repository browser.