-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·47 lines (47 loc) · 1.41 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
{
"name": "svelte-client-router",
"version": "2.1.1",
"author": "Arthur José Germano",
"license": "MIT",
"main": "src/index.js",
"keywords": [
"svelte",
"router",
"spa",
"client",
"route"
],
"repository": {
"type": "git",
"url": "https://github.com/arthurgermano/svelte-client-router"
},
"homepage": "https://arthurgermano.github.io/svelte-client-router/#/svelte-client-router/v2/presentation",
"bugs": {
"url": "https://github.com/arthurgermano/svelte-client-router/issues"
},
"scripts": {
"test": "vitest --run --reporter verbose --globals --environment happy-dom",
"coverage": "vitest run --coverage --globals --environment happy-dom",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"play": "npx playwright codegen http://localhost:5173",
"pwtest": "npx playwright test /pwTests/testV2Flow.spec.js",
"pwtesthead": "npx playwright test /pwTests/testV2Flow.spec.js --headed",
"pwtestdebug": "npx playwright test /pwTests/testV2Flow.spec.js --debug",
"pwreport": "npx playwright show-report"
},
"devDependencies": {
"@playwright/test": "^1.25.2",
"@sveltejs/vite-plugin-svelte": "^1.0.2",
"@vitest/coverage-c8": "^0.22.1",
"happy-dom": "^6.0.4",
"playwright": "^1.25.2",
"svelte": "^4.2.12",
"vite": "^3.0.9",
"vitest": "^0.22.1"
},
"dependencies": {
"spa-storage": "^2.0.2"
}
}