uppy/packages/@uppy/store-default/package.json
Merlijn Vos 7c609a56d9
Use turbo for all unit tests (#5815)
- Upgrade vitest from 1.x to 3.x.
  - Fix some tests that now became more strict and started failing
-  Add test command to all packages + needed dependencies
- Add turbo config for running tests

Another PR will completely redo the e2e test suite.
2025-07-12 13:21:35 +02:00

31 lines
739 B
JSON

{
"name": "@uppy/store-default",
"description": "The default simple object-based store for Uppy.",
"version": "4.2.0",
"license": "MIT",
"main": "lib/index.js",
"type": "module",
"scripts": {
"build": "tsc --build tsconfig.build.json",
"typecheck": "tsc --build",
"test": "vitest run --environment=jsdom --silent='passed-only'"
},
"keywords": [
"file uploader",
"uppy",
"uppy-store"
],
"homepage": "https://uppy.io",
"bugs": {
"url": "https://github.com/transloadit/uppy/issues"
},
"devDependencies": {
"jsdom": "^26.1.0",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/transloadit/uppy.git"
}
}