53 lines
1.4 KiB
JSON
53 lines
1.4 KiB
JSON
{
|
|
"name": "@storybook/testing-library",
|
|
"version": "0.0.9",
|
|
"description": "Instrumented version of Testing Library for Storybook Interactions",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/storybookjs/testing-library.git"
|
|
},
|
|
"main": "dist/cjs/index.js",
|
|
"module": "dist/esm/index.js",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"prebuild": "rimraf dist",
|
|
"build": "yarn build:esm && yarn build:cjs",
|
|
"build:esm": "tsc --project tsconfig.esm.json",
|
|
"build:cjs": "tsc --project tsconfig.cjs.json",
|
|
"prepack": "yarn build",
|
|
"prerelease": "yarn build",
|
|
"release": "auto shipit"
|
|
},
|
|
"author": "yannbf@gmail.com",
|
|
"files": [
|
|
"dist/**/*"
|
|
],
|
|
"types": "dist/types/index.d.ts",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"dependencies": {
|
|
"@storybook/client-logger": "^6.4.0 || >=6.5.0-0",
|
|
"@storybook/instrumenter": "^6.4.0 || >=6.5.0-0",
|
|
"@testing-library/dom": "^8.3.0",
|
|
"@testing-library/user-event": "^13.2.1",
|
|
"ts-dedent": "^2.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@auto-it/first-time-contributor": "^10.32.6",
|
|
"@auto-it/released": "^10.32.6",
|
|
"@storybook/linter-config": "^3.1.2",
|
|
"@types/react": "*",
|
|
"auto": "^10.32.6",
|
|
"rimraf": "^3.0.2",
|
|
"typescript": "^4.4.3"
|
|
},
|
|
"auto": {
|
|
"plugins": [
|
|
"npm",
|
|
"first-time-contributor",
|
|
"released"
|
|
]
|
|
}
|
|
}
|