-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.09 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
{
"name": "svelte-page-router",
"version": "1.1.0",
"description": "Simple wrapper based on pagejs to make DX similar to config-based router.",
"main": "index.js",
"module": "index.mjs",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup -c",
"prepublish": "npm run lint && npm run build",
"lint": "eslint src"
},
"files": [
"index.js",
"index.mjs"
],
"repository": {
"type": "git",
"url": "git+https://github.com/PaulMaly/svelte-page-router.git"
},
"keywords": [
"svelte",
"routing",
"router",
"pagejs"
],
"author": "PaulMaly",
"license": "MIT",
"bugs": {
"url": "https://github.com/PaulMaly/svelte-page-router/issues"
},
"homepage": "https://github.com/PaulMaly/svelte-page-router#readme",
"devDependencies": {
"babel-eslint": "latest",
"eslint": "latest",
"eslint-plugin-import": "latest",
"rollup": "latest"
},
"dependencies": {
"page": "latest"
}
}