-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (46 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (46 loc) · 1.15 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
{
"name": "quickpickle",
"private": true,
"version": "0.0.1",
"description": "A suite of tools for behavioral testing (BDD) using Gherkin for Javascript.",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/dnotes/quickpickle"
},
"scripts": {
"main": "pnpm --dir packages/main",
"playwright": "pnpm --dir packages/playwright",
"browser": "pnpm --dir packages/browser",
"changeset": "changeset",
"changeset:release": "changeset publish",
"changeset:version": "changeset version",
"build": "pnpm -r build",
"playwright-install-ci": "pnpm -r playwright-install-ci",
"test:watch": "vitest",
"test": "pnpm -r --parallel --filter='./packages/*' test -- --reporter='dot' -t '^(?:(?!@skip-ci).)+$'"
},
"keywords": [
"BDD",
"testing",
"behavioral",
"cucumber",
"gherkin",
"vitest",
"playwright",
"react",
"svelte",
"vue",
"angular"
],
"author": "David Hunt",
"license": "MIT",
"devDependencies": {
"playwright": "^1.58.2",
"pnpm": "^9.15.9",
"vitest": "^3.2.4"
},
"dependencies": {
"@changesets/cli": "^2.29.8"
}
}