UNPKG

@gasket/plugin-mocha

Version:

Integrates mocha based testing in to your Gasket application

84 lines 2.29 kB
{ "name": "@gasket/plugin-mocha", "version": "7.5.7", "description": "Integrates mocha based testing in to your Gasket application", "main": "lib/index.js", "types": "lib/index.d.ts", "files": [ "generator", "lib" ], "exports": { ".": { "types": "./lib/index.d.ts", "default": "./lib/index.js" }, "./node-loader-babel": { "types": "./lib/node-loader-babel/index.d.ts", "default": "./lib/node-loader-babel/index.js" }, "./node-loader-styles": { "types": "./lib/node-loader-styles/index.d.ts", "default": "./lib/node-loader-styles/index.js" }, "./package.json": "./package.json" }, "repository": "godaddy/gasket.git", "publishConfig": { "access": "public" }, "keywords": [ "gasket", "mocha", "plugin", "test" ], "author": "GoDaddy Operating Company, LLC", "license": "MIT", "bugs": "https://github.com/godaddy/gasket/issues", "homepage": "https://github.com/godaddy/gasket/tree/main/packages/gasket-plugin-mocha", "devDependencies": { "@babel/core": "^7.26.9", "@babel/plugin-transform-runtime": "^7.26.9", "@babel/preset-env": "^7.26.9", "@babel/preset-react": "^7.26.3", "@babel/preset-typescript": "^7.26.0", "@testing-library/dom": "^10.4.0", "@testing-library/react": "^16.3.0", "@types/mocha": "^10.0.10", "@types/react": "^19.0.12", "@types/react-dom": "^19.0.4", "global-jsdom": "^8.8.0", "jest": "^29.7.0", "jsdom": "^20.0.3", "react": "^19.2.4", "react-dom": "^19.2.4", "ts-node": "^10.9.2", "@gasket/core": "^7.7.4", "@gasket/plugin-express": "^7.5.2", "@gasket/plugin-metadata": "^7.5.10", "create-gasket-app": "^7.4.21" }, "babel": { "presets": [ "@babel/preset-env", "@babel/preset-react" ], "plugins": [ "@babel/transform-runtime" ] }, "jest": { "rootDir": "test" }, "scripts": { "lint": "eslint .", "lint:fix": "pnpm run lint --fix", "posttest": "pnpm run lint && pnpm run typecheck", "test": "cross-env NODE_OPTIONS='--unhandled-rejections=strict' jest", "test:coverage": "jest --coverage", "test:watch": "jest --watch", "typecheck": "tsc", "typecheck:watch": "tsc --watch" } }