forked from roxiness/routify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.2 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
{
"name": "@sveltech/routify",
"version": "0.0.0-development",
"description": "Routes for Svelte, automated by your filestructure",
"main": "lib/index.js",
"svelte": "runtime/index.js",
"repository": {
"type": "git",
"url": "https://github.com/sveltech/routify.git"
},
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/sveltech/routify/issues"
},
"homepage": "https://routify.dev",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@sveltech/ssr": "^0.0.9",
"cheap-watch": "^1.0.2",
"commander": "^5.0.0",
"config": "^3.2.5",
"fs-extra": "^9.0.0",
"js-yaml": "^3.13.1",
"log-symbols": "^3.0.0",
"picomatch": "^2.2.1",
"readdirp": "^3.3.0",
"rollup-pluginutils": "^2.8.2"
},
"bin": {
"routify": "./plugins/cli.js"
},
"directories": {
"runtime": "runtime",
"lib": "lib",
"test": "test"
},
"devDependencies": {
"@rixo/eslint-config-svelte": "^0.8.0",
"chalk": "^4.0.0",
"chokidar-cli": "^2.1.0",
"del-cli": "^3.0.0",
"memfs": "^3.0.3",
"npm-run-all": "^4.1.5",
"rewiremock": "^3.13.9",
"semantic-release": "^17.0.4",
"svelte": "^3.16.0",
"testcafe": "^1.8.4",
"zoar": "^0.0.3",
"zorax": "^0.0.5"
},
"scripts": {
"eslint": "eslint lib plugins runtime",
"prettier": "prettier \"{lib,plugins,runtime}/**/*.{js,svelte}\"",
"lint": "npm run eslint",
"lint:fix": "npm run prettier -- --write && npm run eslint -- --fix",
"test": "npm run test:e2e:setup && npm run test:e2e",
"test:e2e": "node test/e2e test",
"test:e2e:setup": "npm install && node test/e2e setup",
"test:unit": "zoar",
"test:unit:purge": "del test/unit/build/*.expected.js",
"test:unit:refresh": "npm run test:unit:purge && npm run --silent test:unit",
"test:unit:watch": "chokidar \"{test,lib,runtime,plugins}/**/*.js\" -c \"npm run --silent test:unit\"",
"test:unit:watch:only": "chokidar \"{test,lib,runtime,plugins}/**/*.js\" -c \"npm run --silent test:unit -- --only\"",
"test:watch": "run-s test:unit test:unit:watch",
"test(srtest)": "npm run --silent test:unit",
"semantic-release": "semantic-release"
}
}