UNPKG

@atom-learning/jest-stitches

Version:
145 lines (144 loc) 3.48 kB
{ "name": "@atom-learning/jest-stitches", "version": "1.0.10", "homepage": "https://github.com/jaredLunde/jest-stitches#readme", "repository": "github:jaredLunde/jest-stitches", "bugs": "https://github.com/jaredLunde/jest-stitches/issues", "license": "MIT", "description": "Jest utilities for @stitches/react", "keywords": [ "jest", "stitches", "stitches ui", "jest serializer", "css", "jest css serializer", "jest plugin", "jest assertions", "jest stitches assertions", "jest stitches ui", "jest stitches serializer" ], "main": "dist/main/index.js", "source": "src/index.js", "types": "types/index.d.ts", "exports": { ".": { "import": "./dist/esm/index.mjs", "require": "./dist/main/index.js", "source": "./src/index.js", "types": "./types/index.d.ts", "default": "./dist/main/index.js" }, "./package.json": "./package.json", "./": "./" }, "files": [ "/dist", "/src", "/types" ], "sideEffects": false, "scripts": { "build": "lundle build", "dev": "lundle build -f module,cjs -w", "format": "prettier --write \"{,!(node_modules|dist|coverage)/**/}*.{ts,js,md,yml,json}\"", "lint": "eslint .", "prepublishOnly": "cli-confirm \"Did you run 'yarn release' first? (y/N)\"", "prerelease": "npm run validate && npm run build", "release": "git add . && standard-version -a", "test": "jest", "validate": "npm run lint && npm run test -- --coverage" }, "husky": { "hooks": { "pre-commit": "lint-staged", "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" } }, "lint-staged": { "**/*.js": [ "eslint --fix", "prettier --write" ], "**/*.{md,yml,json,eslintrc,prettierrc}": [ "prettier --write" ] }, "commitlint": { "extends": [ "@commitlint/config-conventional" ] }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } }, "eslintConfig": { "extends": [ "lunde" ], "overrides": [ { "files": [ "**/*.test.js" ], "settings": { "import/resolver": { "node": { "moduleDirectory": [ "node_modules", "src/", "test/" ] }, "jest": { "jestConfigFile": "<rootDir>/jest.config.js" } } } } ] }, "eslintIgnore": [ "node_modules", "coverage", "dist", "test", "*.config.js" ], "prettier": { "semi": false, "singleQuote": true, "bracketSpacing": false }, "devDependencies": { "@babel/preset-react": "^7.12.5", "@commitlint/cli": "latest", "@commitlint/config-conventional": "latest", "@stitches/react": "^0.0.2", "babel-jest": "latest", "cli-confirm": "latest", "cz-conventional-changelog": "latest", "enzyme": "^3.11.0", "enzyme-adapter-react-16": "^1.15.5", "eslint": "latest", "eslint-config-lunde": "latest", "husky": "latest", "jest": "latest", "lint-staged": "latest", "lundle": "latest", "prettier": "latest", "pretty-format": "^26.6.2", "react": "^16.0.0", "react-dom": "^16.0.0", "react-test-renderer": "^17.0.1", "standard-version": "latest" }, "dependencies": { "chalk": "^4.1.0", "css": "^3.0.0" }, "peerDependencies": {} }