-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
93 lines (93 loc) · 2.4 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
{
"name": "@mediv0/v-bucket",
"version": "1.1.1",
"private": false,
"description": "📦 Fast, Simple, and Lightweight State Management for Vue 3.0 built with composition API, inspired by Vuex.",
"author": "Mahdi Fakhr",
"license": "MIT",
"main": "dist/v-bucket.cjs.js",
"module": "dist/v-bucket.esm-bundler.js",
"browser": "dist/v-bucket.esm-browser.js",
"unpkg": "dist/v-bucket.global.js",
"jsdelivr": "dist/v-bucket.global.js",
"sideEffects": false,
"files": [
"dist"
],
"homepage": "https://github.com/mediv0/v-bucket",
"repository": {
"type": "git",
"url": "https://github.com/mediv0/v-bucket"
},
"bugs": {
"url": "https://github.com/mediv0/v-bucket/issues"
},
"keywords": [
"vue",
"vuejs",
"vuex",
"state",
"state manager",
"simple state managment",
"vue3.0",
"compositionApi",
"vue-3.0-Plugin",
"vueLibrary"
],
"scripts": {
"dev": "vue-cli-service serve ./examples/main.js -w",
"build": "node scripts/build.js",
"test": "vue-cli-service test:unit",
"lint": "vue-cli-service lint",
"pretty": "prettier src/* --write"
},
"peerDependencies": {
"vue": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-replace": "^2.3.3",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-unit-jest": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/compiler-sfc": "^3.0.0-0",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/test-utils": "^2.0.0-0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"brotli": "^1.3.2",
"chalk": "^4.1.0",
"codecov": "^3.7.2",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-vue": "^7.0.0-0",
"execa": "^4.0.3",
"fs-extra": "^9.0.1",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"rollup": "^2.28.1",
"rollup-plugin-terser": "^7.0.2",
"sass-loader": "^8.0.2",
"vue": "^3.0.0",
"vue-jest": "^5.0.0-0",
"zlib": "^1.0.5"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue}": [
"yarn pretty",
"vue-cli-service lint",
"git add"
]
},
"dependencies": {
"sass": "^1.77.8"
}
}