forked from greenpress/vuex-composition-helpers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.06 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
{
"name": "vuex-composition-helpers",
"version": "1.2.0",
"description": "Helpers to use Vuex store form Vue Composition API",
"author": "David Meir-Levy <[email protected]>",
"license": "MIT",
"keywords": [
"vue",
"vuex",
"composition-api",
"store",
"state management"
],
"main": "src/index.ts",
"browser": "dist/index.js",
"typings": "dist/types/index.d.ts",
"scripts": {
"prepublish": "npm run test && npx tsc --build tsconfig.json",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git https://github.com/greenpress/vuex-composition-helpers.git"
},
"bugs": {
"url": "https://github.com/greenpress/vuex-composition-helpers/issues"
},
"homepage": "https://github.com/greenpress/vuex-composition-helpers#readme",
"devDependencies": {
"@types/jest": "^28.1.4",
"@vue/test-utils": "^1.0.0-beta.33",
"jest": "^28.1.2",
"jest-environment-jsdom": "^28.1.2",
"ts-jest": "^28.0.5",
"typescript": "^4.7.4",
"vue": "^2.7.0",
"vue-template-compiler": "^2.7.0",
"vuex": "^3.1.3"
},
"peerDependencies": {
"vue": "^2.7.0"
}
}