UNPKG

jest-preview

Version:

Preview your Jest tests in a browser

146 lines (145 loc) 4.51 kB
{ "name": "jest-preview", "version": "0.3.3", "description": "Preview your Jest tests in a browser", "keywords": [ "testing", "jest", "frontend", "productivity", "debug", "preview jest" ], "homepage": "https://www.jest-preview.com", "repository": { "type": "git", "url": "git+https://github.com/nvh95/jest-preview.git" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/jest-preview" }, "license": "MIT", "author": { "name": "Hung Viet Nguyen", "url": "https://github.com/nvh95" }, "main": "dist/index.js", "bin": { "jest-preview": "dist/cli/index.js" }, "files": [ "dist", "transforms", "cli" ], "scripts": { "docs": "cd website && npm run start", "build:docs": "cd website && npm run build", "build:docs:cn": "cd website && npm run build:cn", "dev": "vite", "build:legacy::only": "vite build", "build:legacy:watch": "vite build --watch", "build": "rimraf dist && rollup -c", "build:watch": "rimraf dist && rollup -c -w", "prepublishOnly": "pnpm run build", "publish:alpha": "cross-env BUILD_TAG=alpha npm publish --tag alpha", "publish:latest": "cross-env BUILD_TAG=latest npm publish", "preview": "vite preview", "server": "node dist/cli/index.js", "server:watch": "nodemon dist/cli/index.js", "test:dev": "jest --clearCache && cross-env NODE_ENV=test jest --watch App --no-cache", "test:dev:cache": "cross-env NODE_ENV=test jest --watch App", "test:ci": "cross-env NODE_ENV=test jest", "clearCache": "node dist/cli/clearCache.js", "test": "npm-run-all -p server test:dev", "prettier": "prettier cli src --check", "prettier:fix": "pnpm run prettier -- --write", "sort": "npx sort-package-json", "publish:local": "npm publish --registry http://localhost:4873/", "ecosystem-ci": "node scripts/ecosystem-ci.js", "lint": "eslint . --ext .tsx,.ts,.js,.jsx" }, "dependencies": { "@svgr/core": "^6.5.1", "camelcase": "^6.3.0", "chalk": "^4.1.2", "chokidar": "^3.6.0", "commander": "^9.5.0", "connect": "^3.7.0", "find-node-modules": "^2.1.3", "open": "^8.4.2", "postcss-import": "^14.1.0", "postcss-load-config": "^4.0.2", "sirv": "^2.0.4", "slash": "^3.0.0", "string-hash": "^1.1.3", "update-notifier": "^7.3.1", "ws": "^8.18.1" }, "devDependencies": { "@babel/core": "^7.26.9", "@emotion/css": "^11.13.5", "@emotion/react": "^11.14.0", "@emotion/styled": "^11.14.1", "@jest/types": "^27.5.1", "@rollup/plugin-commonjs": "^23.0.7", "@rollup/plugin-node-resolve": "^15.3.1", "@stitches/react": "^1.2.8", "@swc/core": "^1.11.5", "@swc/jest": "^0.2.37", "@testing-library/dom": "^8.20.1", "@testing-library/jest-dom": "^5.17.0", "@testing-library/react": "^12.1.5", "@testing-library/user-event": "^13.5.0", "@types/connect": "^3.4.38", "@types/jest": "^27.5.2", "@types/less": "^3.0.8", "@types/node": "^18.19.78", "@types/react": "^17.0.83", "@types/react-dom": "^17.0.26", "@types/svgo": "^2.6.4", "@types/testing-library__jest-dom": "^5.14.9", "@types/ws": "^8.5.14", "@typescript-eslint/eslint-plugin": "^5.62.0", "@typescript-eslint/parser": "^5.62.0", "@vitejs/plugin-react": "^1.3.2", "animate-sass": "^0.8.2", "animate.css": "^4.1.1", "autoprefixer": "^10.4.20", "cross-env": "^7.0.3", "eslint": "^8.57.1", "eslint-config-prettier": "^8.10.0", "eslint-config-standard": "^17.1.0", "eslint-plugin-import": "^2.31.0", "eslint-plugin-n": "^15.7.0", "eslint-plugin-promise": "^6.6.0", "eslint-plugin-react": "^7.37.4", "jest": "^27.5.1", "jest-watch-typeahead": "^1.1.0", "less": "^4.2.2", "nodemon": "^2.0.22", "npm-run-all": "^4.1.5", "postcss": "^8.5.3", "postcss-modules": "^4.3.1", "postcss-trolling": "^0.1.7", "prettier": "^2.8.8", "react": "^17.0.2", "react-dom": "^17.0.2", "react-is": "^18.3.1", "rimraf": "^3.0.2", "rollup": "^3.29.5", "rollup-plugin-copy": "^3.5.0", "rollup-plugin-dts": "^5.3.1", "rollup-plugin-esbuild": "^4.10.3", "sass": "^1.85.1", "styled-components": "^6.1.19", "tailwindcss": "^3.4.17", "typescript": "^4.9.5", "vite": "^2.9.18", "vite-plugin-svgr": "^2.4.0" }, "bug": { "url": "https://github.com/nvh95/jest-preview/issues" } }