@sysvale/show 1.0.0 → 1.1.0

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,156 +1,64 @@
1
1
  {
2
- "name": "@sysvale/show",
3
- "version": "1.0.0",
4
- "description": "A set of components used at Sysvale",
5
- "repository": {
6
- "type": "git",
7
- "url": "git+https://github.com/Sysvale/show.git"
8
- },
9
- "main": "dist/@sysvale/show.ssr.js",
10
- "module": "dist/@sysvale/show.esm.js",
11
- "unpkg": "dist/@sysvale/show.min.js",
12
- "files": [
13
- "dist/*"
14
- ],
15
- "scripts": {
16
- "serve": "vue-cli-service serve",
17
- "test:unit": "vue-cli-service test:unit",
18
- "test": "jest",
19
- "lint": "vue-cli-service lint",
20
- "storybook": "start-storybook -p 6006 --docs",
21
- "build-storybook": "build-storybook -s public --docs",
22
- "build": "cross-env NODE_ENV=production rollup --config build/rollup.config.js",
23
- "build:ssr": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format cjs",
24
- "build:es": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format es",
25
- "build:unpkg": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format iife",
26
- "chromatic": "npx chromatic --project-token=a0f13ffc7d61"
27
- },
28
- "dependencies": {
29
- "lodash.camelcase": "^4.3.0",
30
- "lodash.get": "^4.4.2",
31
- "lodash.isobject": "^3.0.2",
32
- "lodash.keyby": "^4.6.0",
33
- "lodash.snakecase": "^4.1.1",
34
- "sweetalert2": "^11.3.5",
35
- "vue": "^2.6.12"
36
- },
37
- "devDependencies": {
38
- "@babel/core": "^7.11.6",
39
- "@rollup/plugin-alias": "^2.2.0",
40
- "@rollup/plugin-buble": "^0.20.0",
41
- "@rollup/plugin-replace": "^2.3.0",
42
- "@storybook/addon-actions": "^6.1.0-alpha.10",
43
- "@storybook/addon-essentials": "^6.1.0-alpha.10",
44
- "@storybook/addon-links": "^6.1.0-alpha.10",
45
- "@storybook/preset-scss": "^1.0.2",
46
- "@storybook/vue": "^6.1.0-alpha.10",
47
- "@vue/cli-plugin-babel": "~4.5.0",
48
- "@vue/cli-plugin-eslint": "~4.5.0",
49
- "@vue/cli-plugin-unit-jest": "~4.5.0",
50
- "@vue/cli-service": "~4.5.0",
51
- "@vue/eslint-config-airbnb": "^5.0.2",
52
- "@vue/test-utils": "^1.1.0",
53
- "babel-eslint": "^10.1.0",
54
- "babel-loader": "^8.1.0",
55
- "chromatic": "^6.0.4",
56
- "cross-env": "^6.0.3",
57
- "css-loader": "^4.3.0",
58
- "eslint": "^6.7.2",
59
- "eslint-plugin-import": "^2.20.2",
60
- "eslint-plugin-vue": "^6.2.2",
61
- "flush-promises": "^1.0.2",
62
- "highlight.js": "^10.6.0",
63
- "react-is": "^16.13.1",
64
- "regenerator-runtime": "^0.13.9",
65
- "rollup": "^1.29.0",
66
- "rollup-plugin-commonjs": "^10.1.0",
67
- "rollup-plugin-terser": "^5.2.0",
68
- "rollup-plugin-vue": "5.1.1",
69
- "vue-hljs": "^2.0.0",
70
- "vue-template-compiler": "^2.6.11"
71
- },
72
- "eslintConfig": {
73
- "root": true,
74
- "env": {
75
- "node": true
76
- },
77
- "extends": [
78
- "plugin:vue/essential",
79
- "@vue/airbnb"
80
- ],
81
- "parserOptions": {
82
- "parser": "babel-eslint"
83
- },
84
- "rules": {
85
- "vue/html-indent": [
86
- "error",
87
- "tab",
88
- {
89
- "attribute": 1,
90
- "closeBracket": 0,
91
- "alignAttributesVertically": true,
92
- "ignores": []
93
- }
94
- ],
95
- "no-tabs": "off",
96
- "indent": [
97
- "error",
98
- "tab",
99
- {
100
- "SwitchCase": 1
101
- }
102
- ],
103
- "quotes": [
104
- "error",
105
- "single",
106
- {
107
- "allowTemplateLiterals": true
108
- }
109
- ]
110
- },
111
- "overrides": [
112
- {
113
- "files": [
114
- "**/__tests__/*.{j,t}s?(x)",
115
- "**/tests/unit/**/*.spec.{j,t}s?(x)"
116
- ],
117
- "env": {
118
- "jest": true
119
- }
120
- }
121
- ]
122
- },
123
- "browserslist": [
124
- "> 1%",
125
- "last 2 versions",
126
- "not dead"
127
- ],
128
- "jest": {
129
- "preset": "@vue/cli-plugin-unit-jest",
130
- "transform": {
131
- ".*\\.(js)$": "babel-jest"
132
- },
133
- "setupFilesAfterEnv": [
134
- "./src/utils/setupTests.js"
135
- ],
136
- "collectCoverage": true,
137
- "collectCoverageFrom": [
138
- "src/**/*.vue"
139
- ],
140
- "coverageReporters": [
141
- "lcov",
142
- "text"
143
- ]
144
- },
145
- "babel": {
146
- "presets": [
147
- "@babel/preset-env"
148
- ]
149
- },
150
- "bugs": {
151
- "url": "https://github.com/Sysvale/show/issues"
152
- },
153
- "homepage": "https://github.com/Sysvale/show#readme",
154
- "author": "Sysvale",
155
- "license": "MIT"
2
+ "name": "@sysvale/show",
3
+ "version": "1.1.0",
4
+ "description": "A set of components used at Sysvale",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "git+https://github.com/Sysvale/sys-hand-on-wheel.git"
8
+ },
9
+ "main": "dist/@sysvale/show.ssr.js",
10
+ "module": "dist/@sysvale/show.esm.js",
11
+ "unpkg": "dist/@sysvale/show.min.js",
12
+ "files": [
13
+ "dist/*"
14
+ ],
15
+ "exports": {
16
+ ".": {
17
+ "import": "./dist/@sysvale/show.es.js",
18
+ "require": "./dist/@sysvale/show.umd.js"
19
+ }
20
+ },
21
+ "scripts": {
22
+ "dev": "vite",
23
+ "build": "vite build",
24
+ "preview": "vite preview",
25
+ "test": "vitest"
26
+ },
27
+ "dependencies": {
28
+ "lodash.camelcase": "^4.3.0",
29
+ "lodash.get": "^4.4.2",
30
+ "lodash.isempty": "^4.4.0",
31
+ "lodash.isequal": "^4.5.0",
32
+ "lodash.isobject": "^3.0.2",
33
+ "lodash.keyby": "^4.6.0",
34
+ "lodash.reduce": "^4.6.0",
35
+ "lodash.snakecase": "^4.1.1",
36
+ "sweetalert2": "^11.3.5",
37
+ "vue": "^3.2.37"
38
+ },
39
+ "devDependencies": {
40
+ "@babel/core": "^7.18.10",
41
+ "@rollup/plugin-typescript": "^8.4.0",
42
+ "@types/vue": "^2.0.0",
43
+ "@vitejs/plugin-vue": "^3.0.3",
44
+ "@vue/test-utils": "^2.0.2",
45
+ "babel-loader": "^8.2.5",
46
+ "concat": "^1.0.3",
47
+ "esbuild-linux-64": "^0.15.18",
48
+ "eslint": "^8.31.0",
49
+ "eslint-plugin-vue": "^9.9.0",
50
+ "jsdom": "^20.0.0",
51
+ "sass": "^1.55.0",
52
+ "typescript": "^4.6.4",
53
+ "vite": "^3.0.0",
54
+ "vitest": "^0.22.0",
55
+ "vue-loader": "^16.8.3",
56
+ "vue-tsc": "^0.38.4"
57
+ },
58
+ "bugs": {
59
+ "url": "https://github.com/Sysvale/sys-hand-on-wheel/issues"
60
+ },
61
+ "homepage": "https://github.com/Sysvale/sys-hand-on-wheel#readme",
62
+ "author": "Sysvale",
63
+ "license": "MIT"
156
64
  }