-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.31 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.31 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
{
"name": "formscrm",
"version": "1.0.0",
"description": "Plugin for connection forms.",
"directories": {
"test": "tests"
},
"private": true,
"scripts": {
"wp": "npx @wp-playground/cli server --mount=.:/wordpress/wp-content/plugins/ --blueprint=./blueprint.json",
"test": "vitest run --config=tests/integration/vitest.config.ts && npx playwright test --config=tests/end-to-end/playwright.config.ts",
"test:integration": "vitest --config=tests/integration/vitest.config.ts",
"test:e2e": "npx playwright test --ui --config=tests/end-to-end/playwright.config.ts",
"test:wpe2e": "npx playwright test --config tests/e2e/playwright.config.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/closemarketing/formscrm.git"
},
"author": "David Pérez",
"license": "GPL-2.0-or-later",
"bugs": {
"url": "https://github.com/closemarketing/formscrm/issues"
},
"homepage": "https://github.com/closemarketing/formscrm#readme",
"dependencies": {
"csv-parse": "^5.4.0"
},
"devDependencies": {
"@playwright/test": "^1.51.1",
"@types/node": "^22.14.1",
"@wp-playground/cli": "^1.1.1",
"fetch-cookie": "^3.1.0",
"vitest": "^3.1.1"
},
"core": "WordPress/WordPress",
"plugins": [
"./formscrm.php"
],
"config": {
"WP_DEBUG": true
}
}