mirror of
https://github.com/transloadit/uppy.git
synced 2026-08-05 00:04:06 +00:00
- 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.
31 lines
739 B
JSON
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"
|
|
}
|
|
}
|