-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
117 lines (117 loc) · 3.11 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "@xus/vue-reuse",
"description": "composition-api functions reuse your code",
"version": "0.6.0",
"main": "dist/vue.reuse.cjs.js",
"module": "dist/vue.reuse.esm.js",
"types": "dist/vue.reuse.d.ts",
"files": [
"dist"
],
"scripts": {
"init": "rm -rf node_modules && yarn",
"lint": "eslint --ext .ts src/**/*",
"format": "prettier --write --parser typescript \"src/**/*.ts?(x)\"",
"cm": "git-cz",
"test": "jest",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"build": "node scripts/build.js",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1",
"release": "node scripts/release.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"prettier --write"
],
"*.ts?(x)": [
"eslint",
"prettier --parser=typescript --write"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/xus-code/vue-reuse.git"
},
"keywords": [
"vue",
"composition-api",
"hooks",
"vue3",
"composable"
],
"author": "xuguo",
"license": "MIT",
"bugs": {
"url": "https://github.com/xus-code/vue-reuse/issues"
},
"homepage": "https://github.com/xus-code/vue-reuse#readme",
"sideEffects": false,
"external": [
"vue"
],
"peerDependencies": {
"@xuguo/sku": "^1.1.5",
"vue-demi": "^0.2.0"
},
"dependencies": {
"@vue/composition-api": "^1.0.0-beta.22",
"@xuguo/sku": "^1.1.5",
"@xuguo/toolbox": "^1.2.0",
"lodash": "^4.17.20"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
"@babel/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.10.4",
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@types/jest": "^26.0.10",
"@types/lodash": "^4.14.165",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"@vue/test-utils": "^1.0.0-beta.10",
"@vuepress/plugin-back-to-top": "^1.5.3",
"babel-jest": "^26.6.3",
"chalk": "^4.1.0",
"codecov": "^3.8.1",
"commitizen": "^4.1.2",
"conventional-changelog-cli": "^2.1.0",
"cz-conventional-changelog": "^3.2.0",
"enquirer": "^2.3.6",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^23.20.0",
"execa": "^4.0.3",
"fs-extra": "^9.0.1",
"jest": "^26.6.3",
"lint-staged": "^10.2.11",
"minimist": "^1.2.5",
"prettier": "^2.0.5",
"rollup": "^2.26.4",
"rollup-plugin-dts": "^1.4.10",
"rollup-plugin-terser": "^7.0.0",
"rollup-plugin-typescript2": "^0.27.2",
"semver": "^7.3.2",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.12",
"typescript": "^3.9.7",
"vue-demi": "^0.5.3",
"vuepress": "^1.7.1"
}
}