Files
grafana/packages/grafana-test-utils/package.json
T
renovate-sh-app[bot] f6df949bc3 chore(deps): update node.js to v24 (#114011)
| datasource   | package     | from     | to       |
| ------------ | ----------- | -------- | -------- |
| node-version | node        | v22.21.1 | v24.11.1 |
| npm          | @types/node | 24.9.2   | 24.10.1  |
| npm          | @types/node | 22.17.0  | 24.10.1  |

Signed-off-by: renovate-sh-app[bot] <219655108+renovate-sh-app[bot]@users.noreply.github.com>
Co-authored-by: renovate-sh-app[bot] <219655108+renovate-sh-app[bot]@users.noreply.github.com>
2025-11-17 13:46:26 +00:00

73 lines
1.7 KiB
JSON

{
"author": "Grafana Labs",
"license": "Apache-2.0",
"name": "@grafana/test-utils",
"version": "12.4.0-pre",
"private": true,
"description": "Grafana test utils & Mock API",
"keywords": [
"grafana",
"typescript",
"msw",
"mock api"
],
"sideEffects": false,
"repository": {
"type": "git",
"url": "http://github.com/grafana/grafana.git",
"directory": "packages/grafana-test-utils"
},
"main": "src/index.ts",
"types": "src/index.ts",
"module": "src/index.ts",
"exports": {
".": {
"import": "./src/index.ts",
"require": "./src/index.ts"
},
"./server": {
"import": "./src/server/index.ts",
"require": "./src/server/index.ts"
},
"./worker": {
"import": "./src/worker/index.ts",
"require": "./src/worker/index.ts"
},
"./handlers": {
"import": "./src/handlers/index.ts",
"require": "./src/handlers/index.ts"
},
"./unstable": {
"import": "./src/unstable.ts",
"require": "./src/unstable.ts"
},
"./matchers": {
"types": "./src/matchers/index.ts",
"import": "./src/matchers/index.ts",
"require": "./src/matchers/index.ts"
}
},
"scripts": {
"typecheck": "tsc --emitDeclarationOnly false --noEmit",
"test": "jest --watch --onlyChanged",
"test:ci": "jest --maxWorkers 4"
},
"dependencies": {
"chance": "^1.1.13",
"jest-matcher-utils": "29.7.0",
"lodash": "4.17.21",
"msw": "2.10.4",
"rxjs": "7.8.2"
},
"devDependencies": {
"@swc/core": "1.13.3",
"@swc/jest": "^0.2.26",
"@types/chance": "^1.1.7",
"@types/jest": "29.5.14",
"@types/lodash": "4.17.20",
"@types/node": "24.10.1",
"jest": "29.7.0",
"typescript": "5.9.2"
}
}