UNPKG

@testplane/storybook

Version:

Testplane plugin that enables runtime screenshot storybook tests autogeneration

73 lines (72 loc) 2.4 kB
{ "name": "@testplane/storybook", "version": "1.7.6", "description": "Testplane plugin that enables runtime screenshot storybook tests autogeneration", "main": "build/index.js", "files": [ "build", "plugin.js", "preset.js" ], "scripts": { "build": "npm run clean && tsc", "build-spec": "tsc --build tsconfig.spec.json", "clean": "rimraf build/ build-spec/ *.tsbuildinfo", "prepack": "npm run clean && npm run build", "test": "npm run lint && npm run unit", "lint": "npm run eslint && npm run style", "reformat": "eslint src --ext .ts --fix && prettier --write 'src/**/*.ts' '**/*.json'", "prettier-watch": "onchange 'src/**/*.ts' '**/*.json' -- prettier --write {{changed}}", "style": "prettier --check 'src/**/*.ts' '**/*.json'", "eslint": "eslint src --ext .ts", "unit": "jest" }, "repository": { "type": "git", "url": "git+https://github.com/gemini-testing/testplane-storybook.git" }, "engines": { "node": ">= 18.0.0" }, "keywords": [ "storybook", "testplane", "hermione", "testplane-plugin", "autotest" ], "author": "Dmitriy Dudkevich <dudkevich@yandex-team.ru>", "license": "MIT", "bugs": { "url": "https://github.com/gemini-testing/testplane-storybook/issues" }, "homepage": "https://github.com/gemini-testing/testplane-storybook#readme", "devDependencies": { "@gemini-testing/commander": "^2.15.3", "@types/fs-extra": "^11.0.4", "@types/jest": "^29.5.14", "@types/lodash": "^4.14.172", "@types/node": "^12.20.19", "@types/npm-which": "^3.0.3", "@typescript-eslint/eslint-plugin": "^4.29.3", "@typescript-eslint/parser": "^4.29.3", "eslint": "^7.32.0", "eslint-config-gemini-testing": "^3.0.0", "jest": "^29.7.0", "jest-extended": "^0.11.5", "prettier": "^3.4.2", "rimraf": "^3.0.2", "testplane": "^0.1.0-rc.0", "ts-jest": "^29.2.5", "typescript": "^4.3.5" }, "dependencies": { "fs-extra": "^11.2.0", "gemini-configparser": "^1.3.2", "lodash": "^4.17.21", "npm-which": "^3.0.1" }, "peerDependencies": { "storybook": ">=6.4.0" } }