-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1000 Bytes
/
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
{
"name": "vue-component-store",
"description": "Plugin for keeping the state of your Vue.js application inside components.",
"version": "1.0.2",
"keywords": [
"vue",
"vuex",
"component",
"store",
"provide",
"inject",
"reactive"
],
"repository": "https://github.com/adamsol/vue-component-store",
"license": "MIT",
"author": {
"name": "Adam Sołtysik",
"url": "https://github.com/adamsol"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@rollup/plugin-babel": "^5.3.1",
"@vue/test-utils": "^1.3.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^27.5.1",
"jest": "^27.5.1",
"rollup": "^2.77.3",
"vue": "^2.7.8",
"vue-jest": "^3.0.7",
"vue-template-compiler": "^2.7.8"
},
"peerDependencies": {
"vue": "^2.5"
},
"scripts": {
"build": "rollup -c",
"test": "jest"
},
"files": [
"/dist/*.js"
],
"main": "dist/vue-component-store.js"
}