forked from ItalyPaleAle/svelte-spa-router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.43 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
{
"name": "svelte-spa-router",
"version": "3.2.0",
"description": "Router for SPAs using Svelte 3",
"main": "Router.svelte",
"svelte": "Router.svelte",
"types": "Router.d.ts",
"scripts": {
"build-test-app": "(cd test/app && npx rollup -c)",
"start-test-app": "npx serve -n -l 5000 test/app/dist",
"eslint": "npx eslint -c .eslintrc.js --ext .js,.svelte,.html .",
"lint": "npm run eslint",
"nightwatch": "npx nightwatch -e selenium.chrome",
"test": "npm run nightwatch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ItalyPaleAle/svelte-spa-router.git"
},
"keywords": [
"router",
"svelte",
"svelte3",
"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.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"chromedriver": "^91.0.1",
"eslint": "^7.28.0",
"eslint-plugin-html": "^6.1.2",
"eslint-plugin-svelte3": "^3.2.0",
"nightwatch": "^1.7.3",
"rollup": "^2.51.2",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-svelte": "^7.1.0",
"serve": "^12.0.0",
"svelte": "^3.38.2"
}
}