forked from vueuse/vueuse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
122 lines (122 loc) · 3.77 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
118
119
120
121
122
{
"name": "@vueuse/core",
"version": "4.0.0-beta.2",
"description": "Collection of essential Vue Composition API",
"scripts": {
"build": "node ./scripts/build",
"release:gh": "npm test && bump --commit --tag --push --preid beta && conventional-github-releaser -p angular",
"release:local": "npm test && npm run readme:update && bump --commit --tag --preid beta && npm run publich:ci",
"publish:ci": "node ./scripts/publish.js",
"import": "node ./scripts/import",
"typings": "tsc --emitDeclarationOnly && node ./scripts/typing-fix",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint './{packages,.storybook,scripts}/**/*.{js,ts,tsx,vue,md}'",
"lint:fix": "npm run lint -- --fix",
"readme:update": "node ./scripts/updateReadme",
"clean": "rimraf dist typings storybook-static",
"dev": "start-storybook -p 6006",
"storybook": "start-storybook -p 6006",
"storybook:build": "npm run typings && build-storybook"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{packages,.storybook,scripts}/**/*.{js,ts,tsx,vue,md} *.js": [
"eslint --fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/antfu/vueuse.git"
},
"keywords": [
"vue",
"vue-use",
"utils"
],
"author": "Anthony Fu<https://github.com/antfu>",
"license": "MIT",
"bugs": {
"url": "https://github.com/antfu/vueuse/issues"
},
"homepage": "https://github.com/antfu/vueuse#readme",
"dependencies": {
"vue-demi": "^0.1.3"
},
"devDependencies": {
"@antfu/eslint-config-vue": "0.2.13",
"@babel/core": "7.10.2",
"@babel/plugin-proposal-optional-chaining": "7.10.1",
"@babel/preset-env": "7.10.2",
"@babel/preset-typescript": "7.10.1",
"@rollup/plugin-replace": "^2.3.3",
"@rollup/plugin-typescript": "5.0.1",
"@storybook/addon-actions": "5.3.19",
"@storybook/addon-knobs": "5.3.19",
"@storybook/addon-links": "5.3.19",
"@storybook/addon-notes": "5.3.19",
"@storybook/addons": "5.3.19",
"@storybook/theming": "5.3.19",
"@storybook/vue": "5.3.19",
"@types/fs-extra": "9.0.1",
"@types/inquirer": "6.5.0",
"@types/jest": "26.0.0",
"@types/js-yaml": "3.12.4",
"@types/node": "14.0.13",
"@types/semver": "7.2.0",
"@vue/babel-preset-jsx": "1.1.2",
"@vue/composition-api": "0.6.3",
"@vue/runtime-dom": "3.0.0-beta.14",
"@vue/test-utils": "1.0.3",
"autoprefixer": "9.8.0",
"axios": "0.19.2",
"babel-loader": "8.1.0",
"babel-preset-vue": "2.0.2",
"commander": "5.1.0",
"consola": "2.13.0",
"conventional-github-releaser": "3.1.3",
"dayjs": "1.8.28",
"eslint": "7.2.0",
"eslint-plugin-jest": "23.13.2",
"eslint-plugin-markdown": "1.0.2",
"fast-glob": "^3.2.4",
"firebase": "7.15.1",
"fs-extra": "9.0.1",
"github-markdown-css": "4.0.0",
"husky": "4.2.5",
"inquirer": "7.1.0",
"jest": "26.0.1",
"js-yaml": "3.14.0",
"lint-staged": "10.2.10",
"markdown-it": "11.0.0",
"markdown-it-highlight-lines": "1.0.2",
"markdown-it-link-attributes": "3.0.0",
"markdown-it-loader": "0.7.0",
"markdown-it-prism": "2.0.5",
"postcss": "7.0.32",
"postcss-import": "12.0.1",
"postcss-loader": "3.0.0",
"prettier": "2.0.5",
"prismjs": "1.20.0",
"raw-loader": "4.0.1",
"rimraf": "3.0.2",
"rollup": "2.16.1",
"rollup-plugin-dts": "1.4.7",
"rollup-plugin-typescript2": "0.27.1",
"rollup-plugin-uglify": "6.0.4",
"tailwindcss": "1.4.6",
"ts-jest": "26.1.0",
"typescript": "3.8.3",
"version-bump-prompt": "6.0.3",
"vue": "2.6.11",
"vue-i18n": "8.18.2",
"vue-loader": "15.9.2",
"vue-template-compiler": "2.6.11",
"vue-tsx-support": "2.3.3"
}
}