-
-
Notifications
You must be signed in to change notification settings - Fork 106
/
package.json
66 lines (66 loc) · 1.75 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "svelte-spa-router",
"version": "4.0.1",
"description": "Router for SPAs using Svelte 4",
"main": "Router.svelte",
"svelte": "Router.svelte",
"types": "Router.d.ts",
"type": "module",
"exports": {
"./active": {
"types": "./active.d.ts",
"import": "./active.js"
},
"./wrap": {
"types": "./wrap.d.ts",
"import": "./wrap.js"
},
".": {
"types": "./Router.d.ts",
"svelte": "./Router.svelte"
}
},
"scripts": {
"build-test-app": "(cd test/app && npx rollup -c)",
"start-test-app": "npx serve -n -l 5050 test/app/dist",
"eslint": "npx eslint -c .eslintrc.cjs --ext .js,.svelte,.html .",
"lint": "npm run eslint",
"nightwatch": "npx nightwatch -e selenium.chrome -c nightwatch.conf.cjs",
"test": "npm run nightwatch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ItalyPaleAle/svelte-spa-router.git"
},
"keywords": [
"router",
"svelte",
"svelte3",
"svelte4",
"spa"
],
"author": "Alessandro Segala (@ItalyPaleAle)",
"license": "MIT",
"funding": "https://github.com/sponsors/ItalyPaleAle",
"bugs": {
"url": "https://github.com/ItalyPaleAle/svelte-spa-router/issues"
},
"homepage": "https://github.com/ItalyPaleAle/svelte-spa-router#readme",
"dependencies": {
"regexparam": "2.0.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"chromedriver": "^119.0.1",
"eslint": "^8.55.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-svelte": "^2.35.1",
"nightwatch": "^2.6.23",
"rollup": "^4.7.0",
"rollup-plugin-css-only": "^4.5.2",
"rollup-plugin-svelte": "^7.1.6",
"serve": "^14.2.1",
"svelte": "^4.2.8"
}
}