forked from jorgegorka/svelte-router
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.49 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
{
"name": "svelte-router-spa",
"version": "6.0.2",
"description": "A full featured router component for Svelte and your Single Page Applications.",
"main": "lib/cjs/index.js",
"browser": "lib/index.js",
"module": "lib/esm/index.js",
"svelte": "src/index.js",
"unpkg": "lib/index.min.js",
"types": "types/index.d.ts",
"scripts": {
"build": "rollup -c",
"dev": "rollup -cw",
"prepublishOnly": "npm test",
"testWatch": "mocha --reporter min --watch --recursive --watch-files ./",
"test": "mocha -r esm"
},
"author": "Jorge Alvarez <[email protected]>",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@tsconfig/svelte": "^1.0.10",
"chai": "^4.3.0",
"eslint": "^7.20.0",
"esm": "^3.2.25",
"mocha": "^8.3.0",
"mocha-jsdom": "^2.0.0",
"rollup": "^2.44.0",
"rollup-plugin-svelte": "^7.1.0",
"rollup-plugin-terser": "^7.0.2",
"svelte": "^3.29.0",
"svelte-preprocess": "^4.6.9"
},
"dependencies": {
"url-params-parser": "^1.0.3"
},
"peerDependencies": {
"svelte": "^3.36.0"
},
"repository": {
"type": "git",
"url": "https://github.com/jorgegorka/svelte-router"
},
"bugs": {
"url": "https://github.com/jorgegorka/svelte-router/issues"
},
"homepage": "https://github.com/jorgegorka/svelte-router/blob/master/README.md",
"keywords": [
"svelte",
"router",
"spa"
]
}