source: frontend/node_modules/jest-cli/package.json

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

Fix frontend appearance

  • Property mode set to 100644
File size: 1.8 KB
Line 
1{
2 "name": "jest-cli",
3 "description": "Delightful JavaScript Testing.",
4 "version": "27.5.1",
5 "main": "./build/index.js",
6 "types": "./build/index.d.ts",
7 "exports": {
8 ".": {
9 "types": "./build/index.d.ts",
10 "default": "./build/index.js"
11 },
12 "./package.json": "./package.json",
13 "./bin/jest": "./bin/jest.js"
14 },
15 "dependencies": {
16 "@jest/core": "^27.5.1",
17 "@jest/test-result": "^27.5.1",
18 "@jest/types": "^27.5.1",
19 "chalk": "^4.0.0",
20 "exit": "^0.1.2",
21 "graceful-fs": "^4.2.9",
22 "import-local": "^3.0.2",
23 "jest-config": "^27.5.1",
24 "jest-util": "^27.5.1",
25 "jest-validate": "^27.5.1",
26 "prompts": "^2.0.1",
27 "yargs": "^16.2.0"
28 },
29 "devDependencies": {
30 "@types/exit": "^0.1.30",
31 "@types/graceful-fs": "^4.1.3",
32 "@types/prompts": "^2.0.1",
33 "@types/yargs": "^16.0.0"
34 },
35 "peerDependencies": {
36 "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0"
37 },
38 "peerDependenciesMeta": {
39 "node-notifier": {
40 "optional": true
41 }
42 },
43 "bin": {
44 "jest": "./bin/jest.js"
45 },
46 "engines": {
47 "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
48 },
49 "repository": {
50 "type": "git",
51 "url": "https://github.com/facebook/jest",
52 "directory": "packages/jest-cli"
53 },
54 "bugs": {
55 "url": "https://github.com/facebook/jest/issues"
56 },
57 "homepage": "https://jestjs.io/",
58 "license": "MIT",
59 "keywords": [
60 "ava",
61 "babel",
62 "coverage",
63 "easy",
64 "expect",
65 "facebook",
66 "immersive",
67 "instant",
68 "jasmine",
69 "jest",
70 "jsdom",
71 "mocha",
72 "mocking",
73 "painless",
74 "qunit",
75 "runner",
76 "sandboxed",
77 "snapshot",
78 "tap",
79 "tape",
80 "test",
81 "testing",
82 "typescript",
83 "watch"
84 ],
85 "publishConfig": {
86 "access": "public"
87 },
88 "gitHead": "67c1aa20c5fec31366d733e901fee2b981cb1850"
89}
Note: See TracBrowser for help on using the repository browser.