Add testing dependencies

This commit is contained in:
hjonasson 2023-11-17 09:57:24 +13:00
parent e60294b950
commit edbe4b7958
No known key found for this signature in database
GPG Key ID: 68D22124ADDEEB04
2 changed files with 5861 additions and 0 deletions

5856
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -6,18 +6,23 @@
"scripts": { "scripts": {
"dev": "node esbuild.config.mjs", "dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production", "build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"test": "jest",
"version": "node version-bump.mjs && git add manifest.json versions.json" "version": "node version-bump.mjs && git add manifest.json versions.json"
}, },
"keywords": [], "keywords": [],
"author": "", "author": "",
"license": "MIT", "license": "MIT",
"devDependencies": { "devDependencies": {
"@types/jest": "^29.5.8",
"@types/node": "^16.11.6", "@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "5.29.0", "@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0", "@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0", "builtin-modules": "3.3.0",
"esbuild": "0.17.3", "esbuild": "0.17.3",
"jest": "^29.7.0",
"jsdom": "^22.1.0",
"obsidian": "latest", "obsidian": "latest",
"ts-jest": "^29.1.1",
"tslib": "2.4.0", "tslib": "2.4.0",
"typescript": "4.7.4" "typescript": "4.7.4"
} }