-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
98 lines (98 loc) · 2.47 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "msw-tools",
"version": "1.1.3",
"description": "Msw-tools(Mock Service Worker Tools) is an interface data mock tool for local development and testing based on Msw.js and Svelte.",
"main": "dist/msw-tools.min.umd.js",
"keywords": [
"mock",
"msw-tools",
"msw",
"api",
"fetch",
"axios",
"server",
"mock service worker",
"network",
"web components"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tive6/msw-tools.git"
},
"bugs": {
"url": "https://github.com/tive6/msw-tools/issues"
},
"homepage": "https://github.com/tive6/msw-tools#readme",
"author": {
"name": "tive6",
"url": "https//tiven.cn"
},
"license": "MIT",
"scripts": {
"dev": "vite --host",
"build": "vite build",
"builds": "vite build",
"build:lib": "vite build --mode lib",
"preview": "vite preview",
"serve": "serve -s dist",
"git": "tive git -c tive.git.config.js",
"lint": "eslint . --ext .js,.svelte --fix",
"prepare": "husky install",
"commit": "cz",
"release:major": "release-it major",
"release": "release-it",
"release:test": "release-it --dry-run"
},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@release-it/conventional-changelog": "^5.1.1",
"@sveltejs/vite-plugin-svelte": "^1.0.2",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-svelte": "^2.14.0",
"eslint-plugin-svelte3": "^4.0.0",
"husky": "^8.0.0",
"lint-staged": "^13.2.2",
"node-sass": "^7.0.3",
"prettier": "^2.8.1",
"prettier-eslint": "^15.0.1",
"prettier-plugin-svelte": "^2.8.1",
"release-it": "^15.11.0",
"sass": "^1.54.9",
"svelte": "^3.49.0",
"svelte-eslint-parser": "^0.22.1",
"svelte-preprocess": "^4.10.7",
"terser": "^5.15.0",
"vite": "^3.1.0",
"vite-plugin-eslint": "^1.8.1"
},
"dependencies": {
"msw": "^1.2.1"
},
"msw": {
"workerDirectory": "public"
},
"engines": {
"node": ">=12"
},
"files": [
"dist/msw-tools.min.mjs",
"dist/msw-tools.min.umd.js",
"README.md"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.{js,jsx,tsx,ts,svelte}": [
"npm run lint"
]
}
}