@kiva/kv-shop 3.7.29 → 3.7.34
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -1
- package/package.json +12 -4
package/README.md
CHANGED
|
@@ -50,8 +50,14 @@ npm run lint
|
|
|
50
50
|
npm run build
|
|
51
51
|
```
|
|
52
52
|
|
|
53
|
+
## Test
|
|
54
|
+
|
|
55
|
+
```bash
|
|
56
|
+
npm run test
|
|
57
|
+
```
|
|
58
|
+
|
|
53
59
|
## Contribution Guidelines
|
|
54
60
|
|
|
55
|
-
|
|
61
|
+
This project is bound by a [Code of Conduct](https://github.com/kiva/ui/blob/master/code_of_conduct.md).
|
|
56
62
|
|
|
57
63
|
Kiva welcomes outside contributions to our UI repository. If you have any ideas for a feature or improvement, create an issue and we can discuss whether it makes sense to create a pull request. Thanks for the help!
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kiva/kv-shop",
|
|
3
|
-
"version": "3.7.
|
|
3
|
+
"version": "3.7.34",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -23,10 +23,18 @@
|
|
|
23
23
|
"lint": "eslint --ext .ts,.vue ./src",
|
|
24
24
|
"test": "jest"
|
|
25
25
|
},
|
|
26
|
+
"repository": {
|
|
27
|
+
"type": "git",
|
|
28
|
+
"url": "git+https://github.com/kiva/kv-ui-elements.git"
|
|
29
|
+
},
|
|
30
|
+
"bugs": {
|
|
31
|
+
"url": "https://github.com/kiva/kv-ui-elements/issues"
|
|
32
|
+
},
|
|
33
|
+
"homepage": "https://github.com/kiva/kv-ui-elements/tree/main/%40kiva/kv-shop#readme",
|
|
26
34
|
"devDependencies": {
|
|
27
35
|
"@apollo/client": "^3.13.1",
|
|
28
|
-
"@kiva/kv-analytics": "^1.3.
|
|
29
|
-
"@kiva/kv-components": "^7.6.
|
|
36
|
+
"@kiva/kv-analytics": "^1.3.1",
|
|
37
|
+
"@kiva/kv-components": "^7.6.3",
|
|
30
38
|
"@kiva/vite-plugin-vue-lib-css": "^2.0.0",
|
|
31
39
|
"@types/braintree-web-drop-in": "^1.39.3",
|
|
32
40
|
"@types/jest": "^29.5.14",
|
|
@@ -55,5 +63,5 @@
|
|
|
55
63
|
"numeral": "2.x",
|
|
56
64
|
"vue": "3.x"
|
|
57
65
|
},
|
|
58
|
-
"gitHead": "
|
|
66
|
+
"gitHead": "139510f7b600b98f4f9655cf911ac08212952881"
|
|
59
67
|
}
|