forked from roxiness/routify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (73 loc) · 2.03 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
67
68
69
70
71
72
73
74
{
"name": "@roxi/routify",
"version": "2.999.2",
"description": "Routes for Svelte, automated by your file structure",
"main": "runtime/index.js",
"svelte": "runtime/index.js",
"repository": {
"type": "git",
"url": "https://github.com/roxiness/routify.git"
},
"author": "jakobrosenberg@gmail.com",
"license": "MIT",
"bin": "./plugins/cli.js",
"directories": {
"runtime": "runtime",
"lib": "lib",
"test": "test"
},
"bugs": {
"url": "https://github.com/roxi/routify/issues"
},
"homepage": "https://routify.dev",
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./typings/runtime/index.d.ts",
"svelte": "./runtime/index.js",
"default": "./runtime/index.js"
},
"./runtime/*": "./runtime/*",
"./plugins/*": "./plugins/*",
"./hmr": "./hmr.js",
"./lib/utils/config": "./lib/utils/config.js"
},
"dependencies": {
"@roxi/ssr": "^0.2.1",
"@types/node": "^12.20.52",
"chalk": "^4.1.2",
"cheap-watch": "^1.0.4",
"commander": "^7.2.0",
"configent": "^2.2.0",
"esm": "^3.2.25",
"fs-extra": "^9.1.0",
"log-symbols": "^3.0.0",
"picomatch": "^2.3.1",
"rollup-pluginutils": "^2.8.2"
},
"devDependencies": {
"@roxi/routify": "*",
"npm-run-all": "^4.1.5",
"semantic-release": "^17.4.7",
"start-server-and-test": "^1.14.0",
"svelte": "^3.48.0",
"typescript": "^3.9.10"
},
"scripts": {
"semantic-release": "semantic-release",
"start:example": "cd test/example && npm install && npm run dev",
"test": "cd test && ava tests/** --timeout 300s",
"test:cli": "cd test && ava tests/cli/** --timeout 300s",
"test:e2e": "start-server-and-test start:example 5000 \"cd test && npm install && npx ava tests/e2e/** --watch\"",
"test:mock-api": "cd test && ava tests/mock-server/**",
"test:typings": "tsc --noEmit",
"build:typings": "tsc --project ./tsconfig.typings.json"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
}
}