UNPKG

scandog

Version:
61 lines 1.63 kB
{ "name": "scandog", "version": "1.0.2", "description": "scandog", "keywords": [ "test", "Vitest", "Jest", "Storybook" ], "homepage": "https://github.com/michiharu/scandog", "bugs": { "url": "https://github.com/michiharu/scandog/issues" }, "repository": { "type": "git", "url": "https://github.com/michiharu/scandog.git" }, "license": "MIT", "author": "michiharu", "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", "bin": "dist/cli.js", "files": [ "/dist" ], "scripts": { "build": "rm -rf dist && tsc", "coverage": "vitest run --coverage", "dev": "rm -rf dist && tsc -w", "fix": "yarn lint && yarn fmt && yarn sort", "fmt": "prettier --write ./src", "lint": "eslint --fix ./src", "prepublishOnly": "yarn build && yarn test && yarn fix", "sort": "npx sort-package-json", "test": "vitest", "test-run": "yarn build && node dist/cli.js" }, "dependencies": { "globby": "^13.1.3", "yargs": "^17.7.1" }, "devDependencies": { "@types/eslint": "^8.21.3", "@types/prettier": "^2.7.2", "@types/yargs": "^17.0.24", "@typescript-eslint/eslint-plugin": "^5.57.0", "@typescript-eslint/parser": "^5.57.0", "@vitest/coverage-c8": "^0.29.8", "eslint": "^8.36.0", "eslint-config-airbnb-base": "^15.0.0", "eslint-config-airbnb-typescript": "^17.0.0", "eslint-config-prettier": "^8.8.0", "eslint-import-resolver-typescript": "^3.5.3", "eslint-plugin-import": "^2.27.5", "prettier": "^2.8.7", "typescript": "^5.0.2", "vitest": "^0.29.8" } }