svelte-time-series 1.0.2 → 1.0.3
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/LICENSE +1 -1
- package/README.md +6 -4
- package/package.json +101 -22
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
[](https://svelte.dev)
|
|
2
2
|
[](https://www.npmjs.com/package/svelte-time-series)
|
|
3
3
|
[](https://opensource.org/licenses/BSD-3-Clause)
|
|
4
|
-
[](https://bundlejs.com/?q=svelte-time-series)
|
|
5
5
|
[](https://npmjs.org/package/svelte-time-series)
|
|
6
|
-
[](https://github.com/arlac77/svelte-time-series/issues)
|
|
7
|
+
[](https://actions-badge.atrox.dev/arlac77/svelte-time-series/goto)
|
|
8
|
+
[](https://github.com/prettier/prettier)
|
|
9
9
|
[](http://commitizen.github.io/cz-cli/)
|
|
10
10
|
[](https://snyk.io/test/github/arlac77/svelte-time-series)
|
|
11
|
+
[](https://coveralls.io/github/arlac77/svelte-time-series)
|
|
12
|
+
[](https://github.com/DevExpress/testcafe)
|
|
11
13
|
|
|
12
14
|
# svelte-time-series
|
|
13
15
|
|
package/package.json
CHANGED
|
@@ -1,14 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "svelte-time-series",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"publishConfig": {
|
|
5
|
-
"access": "public"
|
|
5
|
+
"access": "public",
|
|
6
|
+
"provenance": true
|
|
7
|
+
},
|
|
8
|
+
"main": "./src/index.mjs",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"svelte": "./src/index.svelte"
|
|
12
|
+
}
|
|
6
13
|
},
|
|
7
|
-
"main": "src/index.mjs",
|
|
8
|
-
"svelte": "src/index.svelte",
|
|
9
14
|
"description": "display time series data with svelte",
|
|
10
15
|
"keywords": [
|
|
11
|
-
"
|
|
16
|
+
"component",
|
|
17
|
+
"svelte",
|
|
18
|
+
"time-series",
|
|
19
|
+
"vite",
|
|
20
|
+
"web"
|
|
12
21
|
],
|
|
13
22
|
"contributors": [
|
|
14
23
|
{
|
|
@@ -18,38 +27,108 @@
|
|
|
18
27
|
],
|
|
19
28
|
"license": "BSD-2-Clause",
|
|
20
29
|
"scripts": {
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"
|
|
30
|
+
"prepare": "npm run prepare:vite",
|
|
31
|
+
"prepare:vite": "vite build",
|
|
32
|
+
"start": "vite",
|
|
33
|
+
"test": "npm run test:cafe",
|
|
34
|
+
"test:cafe": "testcafe $BROWSER:headless tests/cafe/*-cafe.mjs -s build/test --page-request-timeout 5000 --app-init-delay 8000 --app vite",
|
|
35
|
+
"docs": "documentation readme --section=API ./src/**/*.mjs",
|
|
36
|
+
"lint": "npm run lint:css && npm run lint:docs",
|
|
37
|
+
"lint:docs": "documentation lint ./src/**/*.mjs",
|
|
38
|
+
"lint:css": "stylelint ./src/*.css",
|
|
39
|
+
"preview": "vite preview"
|
|
25
40
|
},
|
|
26
41
|
"dependencies": {
|
|
27
|
-
"d3-scale": "^
|
|
42
|
+
"d3-scale": "^4.0.0"
|
|
28
43
|
},
|
|
29
44
|
"devDependencies": {
|
|
30
|
-
"@
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
"
|
|
45
|
+
"@semantic-release/commit-analyzer": "^12.0.0",
|
|
46
|
+
"@semantic-release/exec": "^6.0.3",
|
|
47
|
+
"@semantic-release/release-notes-generator": "^13.0.0",
|
|
48
|
+
"@sveltejs/vite-plugin-svelte": "^3.1.0",
|
|
49
|
+
"documentation": "^14.0.3",
|
|
50
|
+
"mf-styling": "^3.1.6",
|
|
51
|
+
"npm-pkgbuild": "^15.2.5",
|
|
52
|
+
"semantic-release": "^23.0.8",
|
|
53
|
+
"stylelint": "^16.3.1",
|
|
54
|
+
"stylelint-config-standard": "^36.0.0",
|
|
55
|
+
"svelte": "^4.2.14",
|
|
56
|
+
"testcafe": "^3.5.0",
|
|
57
|
+
"vite": "^5.2.9"
|
|
58
|
+
},
|
|
59
|
+
"optionalDependencies": {
|
|
60
|
+
"mf-hosting-cloudflare": "^1.0.6",
|
|
61
|
+
"mf-hosting-frontend": "^3.0.3"
|
|
41
62
|
},
|
|
42
63
|
"repository": {
|
|
43
64
|
"type": "git",
|
|
44
|
-
"url": "https://github.com/arlac77/svelte-time-series.git"
|
|
65
|
+
"url": "git+https://github.com/arlac77/svelte-time-series.git"
|
|
45
66
|
},
|
|
46
67
|
"bugs": {
|
|
47
68
|
"url": "https://github.com/arlac77/svelte-time-series/issues"
|
|
48
69
|
},
|
|
49
70
|
"homepage": "https://github.com/arlac77/svelte-time-series#readme",
|
|
71
|
+
"pkgbuild": {
|
|
72
|
+
"content": {
|
|
73
|
+
"${install.dir}": "build/"
|
|
74
|
+
},
|
|
75
|
+
"example": true,
|
|
76
|
+
"frontend": true
|
|
77
|
+
},
|
|
78
|
+
"release": {
|
|
79
|
+
"plugins": [
|
|
80
|
+
"@semantic-release/commit-analyzer",
|
|
81
|
+
"@semantic-release/release-notes-generator",
|
|
82
|
+
"@semantic-release/npm",
|
|
83
|
+
[
|
|
84
|
+
"@semantic-release/exec",
|
|
85
|
+
{
|
|
86
|
+
"publishCmd": "npx npm-pkgbuild --publish dist"
|
|
87
|
+
}
|
|
88
|
+
],
|
|
89
|
+
[
|
|
90
|
+
"@semantic-release/github",
|
|
91
|
+
{
|
|
92
|
+
"assets": [
|
|
93
|
+
{
|
|
94
|
+
"path": "dist/*.deb",
|
|
95
|
+
"label": "any Debian Package"
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"path": "dist/*any.pkg.*",
|
|
99
|
+
"label": "any Arch Linux Package"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"path": "dist/*x86_64.pkg.*",
|
|
103
|
+
"label": "x86_64 Arch Linux Package"
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"path": "dist/*aarch64.pkg.*",
|
|
107
|
+
"label": "arm64 Arch Linux Package"
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"path": "dist/*noarch.rpm",
|
|
111
|
+
"label": "noarch RPM"
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"path": "dist/*x86_64.rpm",
|
|
115
|
+
"label": "x86_64 RPM"
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"path": "dist/*aarch64.rpm",
|
|
119
|
+
"label": "arm64 RPM"
|
|
120
|
+
}
|
|
121
|
+
]
|
|
122
|
+
}
|
|
123
|
+
]
|
|
124
|
+
]
|
|
125
|
+
},
|
|
50
126
|
"template": {
|
|
51
127
|
"inheritFrom": [
|
|
52
128
|
"arlac77/template-arlac77-github",
|
|
129
|
+
"arlac77/template-cloudflare",
|
|
130
|
+
"arlac77/template-css",
|
|
131
|
+
"arlac77/template-npm-pkgbuild",
|
|
53
132
|
"arlac77/template-svelte-component"
|
|
54
133
|
]
|
|
55
134
|
}
|