-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
82 lines (82 loc) · 1.79 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
{
"name": "vuex-mock-store",
"version": "0.1.0",
"description": "Simple and straightforward mock for Vuex v3.x Store",
"main": "src/index.js",
"types": "src/index.d.ts",
"author": {
"name": "Eduardo San Martin Morote",
"email": "[email protected]"
},
"scripts": {
"lint": "eslint --color --ext=js,html src tests",
"unit": "jest",
"dev": "yarn run unit --watchAll",
"test": "yarn run lint && yarn run unit"
},
"files": [
"src",
"LICENSE"
],
"keywords": [
"vue",
"test",
"utils",
"test-utils",
"store",
"vuex",
"mock",
"vuex-mock",
"vuex-store-mock",
"jest",
"vuex-mock-store"
],
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/lodash.clonedeep": "^4.5.9",
"@vue/test-utils": "^2.4.6",
"codecov": "^3.8.3",
"eslint": "^8.57.1",
"eslint-config-posva": "^4.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"vue": "^3.5.12",
"vue-template-compiler": "^2.7.16",
"vuex": "^4.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/posva/vuex-mock-store.git"
},
"bugs": {
"url": "https://github.com/posva/vuex-mock-store/issues"
},
"jest": {
"collectCoverage": true,
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"coveragePathIgnorePatterns": [
"<rootDir>/tests/*.js",
"<rootDir>/tests/.*.js",
"<rootDir>/tests/*/*.js"
],
"testEnvironment": "jsdom",
"testEnvironmentOptions": {
"customExportConditions": [
"node",
"node-addons"
]
}
},
"homepage": "https://github.com/posva/vuex-mock-store#readme",
"dependencies": {
"lodash.clonedeep": "^4.5.0"
},
"peerDependencies": {
"@types/jest": ">=27.0.3"
}
}