-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
62 lines (62 loc) · 2.35 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
{
"name": "uniapp-router-view-loader",
"version": "1.1.3",
"description": "打造uniapp的专属插件",
"main": "./dist/plugins/index.js",
"scripts": {
"dev": "rimraf ./dist && rollup --config --environment NODE_ENV:development && npm run local:test",
"dev:watch": "node ./scripts/chokidar.js",
"build": "rimraf ./dist && rollup --config --environment NODE_ENV:production",
"addV": "npm --no-git-tag-version version patch",
"test": "jest",
"test:coverage": "jest --coverage",
"docs:dev": "node ./scripts/copyChangelog.js && vuepress dev docs",
"docs:build": "node ./scripts/copyChangelog.js && vuepress build docs && node ./scripts/addBaiduStatistics.js && gzip ./docs/.vuepress/dist/**/*.{html,css,js,svg}",
"zip:example": "node ./scripts/compressZipExample.js",
"zip:src": "node ./scripts/compressZipSrc.js",
"local:test": "node ./scripts/localTest.js",
"local:publish": "node ./scripts/localPublish.js"
},
"author": "fty2460392754@gmail.com",
"keywords": [
"uniapp",
"router-view"
],
"repository": {
"type": "git",
"url": "https://github.com/2460392754/uniapp-router-view-loader.git"
},
"bugs": {
"url": "https://github.com/2460392754/uniapp-router-view-loader/issues"
},
"homepage": "https://github.com/2460392754/uniapp-router-view-loader",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.17.2",
"@babel/node": "^7.16.8",
"@babel/preset-env": "^7.16.11",
"@rollup/plugin-json": "^4.1.0",
"@types/jest": "^27.4.0",
"@vuepress/plugin-search": "^2.0.0-beta.35",
"chalk": "4",
"chokidar": "^3.5.3",
"compressing": "^1.5.1",
"dayjs": "^1.10.8",
"gzip-cli": "^1.2.0",
"jest": "^27.5.1",
"rollup": "^2.67.2",
"rollup-plugin-ts": "^2.0.5",
"rollup-plugin-typescript2": "^0.31.2",
"rollup-plugin-uglify": "^6.0.4",
"shelljs": "^0.8.5",
"typescript": "^4.5.5",
"vue": "^3.2.31",
"vuepress": "^2.0.0-beta.35",
"vuepress-plugin-copy-code2": "^2.0.0-alpha.23",
"vuepress-plugin-vuepress2.x-code-copy": "^1.0.0",
"vuepress-theme-quicksand": "^1.0.4"
},
"dependencies": {
"node-html-parser": "^5.2.0"
}
}