-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.13 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
{
"name": "svelte-lightweight-router",
"version": "0.1.6",
"description": "A lightweight client-side router with guards for the Svelte framework.",
"main": "src/index.js",
"types": "src/types.d.ts",
"scripts": {
"test": "jest --config ./config/jest.config.js",
"test:coverage": "npm test -- --coverage",
"lint": "npx eslint src/**"
},
"repository": {
"type": "git",
"url": "git+https://github.com/escheiermann/svelte-lightweight-router.git"
},
"keywords": [
"Svelte",
"router",
"routing",
"SPA",
"guards"
],
"author": "Edgar Scheiermann",
"license": "MIT",
"bugs": {
"url": "https://github.com/escheiermann/svelte-lightweight-router/issues"
},
"homepage": "https://github.com/escheiermann/svelte-lightweight-router#readme",
"devDependencies": {
"@babel/core": "^7.18.5",
"@babel/preset-env": "^7.18.2",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/svelte": "^3.1.3",
"babel-jest": "^28.1.1",
"eslint": "^8.23.1",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"svelte": "^3.0.0",
"svelte-jester": "^2.3.2"
}
}