-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.22 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.22 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@amadeni/convex-e2e",
"version": "0.1.4",
"description": "Helper to run e2e tests in a convex backend",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"convex-e2e": "dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"scripts",
"convex-helpers",
"config.example.ts",
"README.md"
],
"scripts": {
"build": "tsc",
"prepare": "tsc",
"prepublishOnly": "pnpm run build",
"lint": "eslint src/ convex-helpers/",
"ts": "tsc --noEmit --incremental false",
"prettier:check": "prettier --check .",
"prettier:write": "prettier --write .",
"check-spelling": "cspell '**/*.*' --no-progress",
"test": "vitest run",
"test:e2e": "bash fixtures/minimal/run-e2e.sh",
"ci": "pnpm run prettier:check && pnpm run lint && pnpm run ts && pnpm run check-spelling && pnpm run test",
"release": "pnpm version patch && git push && git push --tags",
"release:minor": "pnpm version minor && git push && git push --tags",
"release:major": "pnpm version major && git push && git push --tags",
"re-release": "git tag -d v$(node -p \"require('./package.json').version\") && git push origin :refs/tags/v$(node -p \"require('./package.json').version\") && git tag v$(node -p \"require('./package.json').version\") && git push --tags"
},
"keywords": [
"convex",
"e2e",
"testing",
"test-runner"
],
"author": "Amadeni <nicolai.hallberg@amadeni.ai>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/amadeni/convex-e2e.git"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"convex": ">=1.0.0"
},
"dependencies": {
"dotenv": "^16.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.3.3",
"convex": "^1.32.0",
"cspell": "^9.7.0",
"eslint": "^10.0.2",
"prettier": "^3.8.1",
"typescript": "^5.0.0",
"typescript-eslint": "^8.56.1",
"vitest": "^4.0.18"
},
"packageManager": "pnpm@10.7.0+sha512.6b865ad4b62a1d9842b61d674a393903b871d9244954f652b8842c2b553c72176b278f64c463e52d40fff8aba385c235c8c9ecf5cc7de4fd78b8bb6d49633ab6"
}