-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 845 Bytes
/
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
{
"name": "quickpickle",
"version": "0.0.1",
"description": "A suite of tools for behavioral testing (BDD) using Gherkin for Javascript.",
"main": "index.js",
"scripts": {
"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": "vitest --run"
},
"keywords": [
"BDD",
"testing",
"behavioral",
"cucumber",
"gherkin",
"vitest",
"playwright",
"react",
"svelte",
"vue",
"angular"
],
"author": "David Hunt",
"license": "MIT",
"devDependencies": {
"playwright": "^1.49.1",
"pnpm": "^9.15.4",
"vitest": "^2.1.8"
},
"dependencies": {
"@changesets/cli": "^2.27.11"
}
}