-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
42 lines (42 loc) · 1.33 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
{
"name": "@vuehooks/mono",
"description": "Collection of essential composition functions for Vue",
"private": true,
"repository": "https://github.com/datatorch/vuehooks",
"author": "DataTorch <[email protected]>",
"license": "MIT",
"scripts": {
"test": "jest",
"test:watch": "jest --watch --coverage",
"build": "yarn clean && lerna run build --npm-client=yarn",
"bootstrap": "lerna bootstrap --npm-client=yarn",
"clean": "rimraf packages/**/dist packages/**/*.tsbuildinfo packages/**/node_modules",
"update": "yarn upgrade-interactive --latest",
"release": "yarn build && lerna publish"
},
"dependencies": {},
"peerDependencies": {
"@vue/composition-api": "^0.6.4",
"@vue/runtime-dom": "^3.0.0-beta.15",
"vue": "^2.6.11"
},
"devDependencies": {
"@babel/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.10.4",
"@types/jest": "^26.0.9",
"@types/resize-observer-browser": "^0.1.3",
"@vue/composition-api": "^1.0.0-beta.8",
"@vue/runtime-dom": "^3.0.0-rc.5",
"@vue/test-utils": "^1.0.3",
"jest": "^26.2.2",
"lerna": "^3.22.1",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"ts-jest": "^26.1.4",
"typescript": "^3.9.7",
"vue": "^2.6.11",
"vue-loader": "^15.9.3",
"vue-template-compiler": "^2.6.11",
"vue-tsx-support": "^2.3.3"
}
}