memorial-ui-component-library 1.0.5-dev.2402 → 1.0.6-dev.2403

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/package.json CHANGED
@@ -1,28 +1,24 @@
1
1
  {
2
2
  "name": "memorial-ui-component-library",
3
- "description": "Memorial Health System Vue UI library.",
3
+ "version": "1.0.6-dev.2403",
4
4
  "private": false,
5
- "version": "1.0.5-dev.2402",
5
+ "description": "Memorial Health System Vue UI library.",
6
6
  "author": "Solutions Development",
7
- "license": "MIT",
8
7
  "scripts": {
9
8
  "serve": "vue-cli-service serve",
10
9
  "build": "node build.js",
11
- "build:lib": "vue-cli-service build --target lib --name memorial-ui-component-library --entry ./src/index.ts",
12
- "lint": "vue-cli-service lint"
10
+ "test:unit": "vue-cli-service test:unit",
11
+ "lint": "vue-cli-service lint",
12
+ "build:lib": "vue-cli-service build --target lib --name memorial-ui-component-library --entry ./src/index.ts"
13
13
  },
14
14
  "main": "dist/memorial-ui-component-library.umd.min.js",
15
15
  "module": "dist/memorial-ui-component-library.common.min.js",
16
- "typings": "types/index.d.ts",
16
+ "unpkg": "dist/memorial-ui-component-library.umd.min.js",
17
17
  "files": [
18
18
  "types/*",
19
19
  "dist/*",
20
20
  "src/assets/scss/*"
21
21
  ],
22
- "unpkg": "dist/memorial-ui-component-library.umd.min.js",
23
- "peerDependencies": {
24
- "vue": "^2.6.10"
25
- },
26
22
  "dependencies": {
27
23
  "@fortawesome/fontawesome-svg-core": "^1.2.22",
28
24
  "@fortawesome/free-regular-svg-icons": "^5.10.2",
@@ -37,27 +33,40 @@
37
33
  "vue-spinner": "^1.0.3"
38
34
  },
39
35
  "devDependencies": {
36
+ "@testing-library/vue": "^5.9.0",
37
+ "@types/jest": "^27.0.1",
40
38
  "@typescript-eslint/eslint-plugin": "^5.4.0",
41
39
  "@typescript-eslint/parser": "^5.4.0",
42
40
  "@vue/cli-plugin-babel": "~5.0.0",
43
41
  "@vue/cli-plugin-eslint": "~5.0.0",
44
42
  "@vue/cli-plugin-typescript": "~5.0.0",
43
+ "@vue/cli-plugin-unit-jest": "~5.0.0",
45
44
  "@vue/cli-service": "~5.0.0",
46
45
  "@vue/eslint-config-prettier": "^4.0.1",
47
46
  "@vue/eslint-config-typescript": "^9.1.0",
47
+ "@vue/test-utils": "^1.3.6",
48
+ "@vue/vue2-jest": "^27.0.0-alpha.2",
48
49
  "babel-eslint": "^10.0.1",
50
+ "babel-jest": "^27.0.6",
49
51
  "chalk": "^2.4.2",
50
52
  "eslint": "^7.32.0",
51
53
  "eslint-config-prettier": "^8.3.0",
52
54
  "eslint-plugin-prettier": "^4.0.0",
53
55
  "eslint-plugin-vue": "^8.0.3",
56
+ "jest": "^27.0.5",
54
57
  "prettier": "^2.4.1",
55
58
  "sass": "^1.81",
56
59
  "sass-loader": "^10",
57
60
  "style-resources-loader": "^1.5.0",
61
+ "ts-jest": "^27.0.4",
58
62
  "typescript": "~4.5.5",
59
63
  "vue-cli-plugin-style-resources-loader": "^0.1.2",
60
64
  "vue-cli-plugin-webpack-bundle-analyzer": "^1.4.0",
61
65
  "vue-template-compiler": "^2.6.14"
62
- }
66
+ },
67
+ "peerDependencies": {
68
+ "vue": "^2.6.10"
69
+ },
70
+ "license": "MIT",
71
+ "typings": "types/index.d.ts"
63
72
  }