-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
71 lines (71 loc) · 1.83 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
{
"name": "vue-fixed-header",
"version": "3.2.15",
"description": "Simple and cross-browser friendly fixed header component for Vue.js.",
"licence": "MIT",
"keywords": [
"vue",
"vue-plugin",
"vue-component",
"typescript"
],
"repository": {
"url": "potato4d/vue-fixed-header",
"type": "git"
},
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"dev": "yarn serve",
"serve": "vue-cli-service serve ./src/example.ts",
"build": "tsc --build tsconfig.build.json",
"format": "npm-run-all -p format:*",
"format:src": "prettier './src/**/*.{js,ts,tsx,vue}' --write",
"format:docs": "prettier './docs/.vuepress/**/*.{js,vue}' --write",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"gh-pages": "gh-pages -d docs/.vuepress/dist -m '[ci skip] deploy'"
},
"author": {
"name": "potato4d",
"email": "[email protected]"
},
"devDependencies": {
"@types/jest": "26.0.24",
"@types/node": "22.9.0",
"@vue/cli": "5.0.8",
"@vue/cli-plugin-babel": "5.0.8",
"@vue/cli-plugin-typescript": "5.0.8",
"@vue/cli-plugin-unit-jest": "5.0.8",
"@vue/cli-service": "5.0.8",
"@vue/component-compiler-utils": "3.3.0",
"@vue/test-utils": "1.3.6",
"all-contributors-cli": "6.26.1",
"bulma": "1.0.2",
"codecov": "3.8.3",
"element-ui": "2.15.14",
"gh-pages": "6.2.0",
"jest": "26.6.3",
"jsdom": "22.1.0",
"jsdom-global": "3.0.2",
"npm-run-all2": "5.0.2",
"prettier": "3.3.3",
"renovate": "28.26.0",
"standard-version": "9.5.0",
"ts-jest": "26.5.6",
"typescript": "4.9.5",
"vue-template-compiler": "2.7.16",
"vuepress": "1.9.10"
},
"dependencies": {
"tslib": "2.8.1",
"vue": "^3.0.0"
},
"prettier": {
"semi": false,
"singleQuote": true
}
}