-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.44 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "convex-test",
"version": "0.0.34",
"description": "A JS mock of the Convex backend for testing your Convex functions.",
"keywords": [
"test",
"jest",
"vitest",
"convex"
],
"homepage": "https://docs.convex.dev/functions/testing",
"bugs": "https://github.com/get-convex/convex-test/issues",
"repository": "https://github.com/get-convex/convex-test",
"main": "dist/index.js",
"type": "module",
"files": [
"dist/*.js",
"dist/*.ts",
"dist/*.map"
],
"scripts": {
"prebuild": "npm run lint && npm run test:once",
"build": "tsc && replace-in-file '\"./convex/**/*.*s\"' '\"../../../convex/**/*.*s\"' ./dist/index.js",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"test": "vitest",
"test:once": "vitest run",
"test:debug": "vitest --inspect-brk --no-file-parallelism",
"test:coverage": "vitest run --coverage",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build"
},
"author": "Sarah Shader & Michal Srb <srb@convex.dev>",
"license": "Apache-2.0",
"peerDependencies": {
"convex": "^1.16.4"
},
"devDependencies": {
"@edge-runtime/vm": "^3.2.0",
"@types/node": "^20.12.11",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"@vitest/coverage-v8": "^1.6.0",
"eslint": "^8.49.0",
"replace-in-file": "^7.1.0",
"typescript": "^5.4.3",
"vitest": "^1.4.0"
}
}