-
-
Notifications
You must be signed in to change notification settings - Fork 64
/
package.json
109 lines (109 loc) · 3.05 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
{
"version": "1.0.0-beta.24",
"name": "vue-composable-monorepo",
"workspaces": [
"packages/*"
],
"description": "Vue composition-api composable components",
"author": {
"name": "pikax",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/pikax/vue-composable.git"
},
"private": true,
"scripts": {
"build": "node scripts/build.js",
"build:vue2": "yarn build --version=2",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1",
"release": "node scripts/publish.js",
"test": "jest --coverage",
"test:watch": "jest --coverage --watch",
"test:prod": "npm run lint && npm run test -- --no-cache",
"test:vue2": "cross-env VUE=2 yarn test",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"lint": "prettier \"packages/**/*.ts\" \"docs/(.vuepress|Examples|composable)/**/*.md\" \"docs/.vuepress/*.js\" \"docs/**/*.vue\" --write"
},
"bugs": {
"url": "https://github.com/pikax/vue-composable/issues"
},
"homepage": "https://pikax.me/vue-composable/composable",
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "node scripts/verifyCommit.js"
},
"lint-staged": {
"*.vue": [
"prettier --write",
"git add"
],
"*.md": [
"prettier --write",
"git add"
],
"*.js": [
"prettier --write",
"git add"
],
"*.ts?(x)": [
"prettier --parser=typescript --write",
"git add"
]
},
"devDependencies": {
"@microsoft/api-extractor": "^7.15.2",
"@rollup/plugin-alias": "^3.1.4",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@rollup/plugin-replace": "^3.0.0",
"@types/jest": "26.0.24",
"@types/js-cookie": "^2.2.7",
"@types/node": "^16.4.7",
"@vue/compiler-sfc": "^3.1.5",
"@vue/composition-api": "^1.0.4",
"@vue/reactivity": "^3.0.7",
"@vue/runtime-core": "^3.0.7",
"@vue/runtime-dom": "^3.0.7",
"@vuepress/plugin-back-to-top": "^1.8.2",
"@vuepress/plugin-pwa": "^1.8.2",
"axios": "^0.21.1",
"brotli": "^1.3.2",
"chalk": "^4.1.2",
"conventional-changelog-cli": "^2.1.1",
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"enquirer": "^2.3.6",
"execa": "^5.1.1",
"fs-extra": "^9.1.0",
"jest": "^26.6.3",
"jest-junit": "^12.2.0",
"jest-websocket-mock": "^2.2.1",
"js-cookie": "^2.2.1",
"lint-staged": "^11.1.1",
"lodash.camelcase": "^4.3.0",
"minimist": "^1.2.5",
"mock-socket": "^9.0.3",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"rollup": "^2.55.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^26.5.6",
"tsd": "^0.16.0",
"typescript": "^4.2.4",
"vue": "^2.6.14",
"vue-server-renderer": "^2.6.14",
"vue-template-compiler": "^2.6.14",
"vuepress": "^1.8.2",
"yorkie": "^2.0.0",
"zlib": "^1.0.5"
},
"resolutions": {
"vue-server-renderer": "^2.6.14",
"vue-template-compiler": "^2.6.14"
}
}