-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
147 lines (147 loc) · 3.62 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"name": "svelte-inclusive-datepicker",
"version": "1.0.2",
"author": "André Rusakow",
"description": "accessible date picker for Svelte",
"svelte": "src/index.ts",
"module": "dist/index.mjs",
"main": "dist/index.js",
"license": "MIT",
"keywords": [
"svelte",
"typescript",
"accessibility",
"date",
"picker"
],
"homepage": "https://github.com/andrew-secret/svelte-datepicker",
"repository": {
"url": "https://github.com/andrew-secret/svelte-datepicker.git"
},
"scripts": {
"build": "rollup -c",
"prepublishOnly": "npm run build",
"test": "TZ=UTC jest test",
"test:watch": "npm run test -- --watch",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"peerDependencies": {
"@date-io/date-fns": "^2.10.8",
"@date-io/dayjs": "^2.10.8",
"@date-io/luxon": "^2.10.8",
"@date-io/moment": "^2.10.8",
"date-fns": "^2.21.1",
"dayjs": "^1.10.4",
"luxon": "^1.26.0",
"moment": "^2.29.1"
},
"peerDependenciesMeta": {
"date-fns": {
"optional": true
},
"@date-io/date-fns": {
"optional": true
},
"dayjs": {
"optional": true
},
"@date-io/dayjs": {
"optional": true
},
"luxon": {
"optional": true
},
"@date-io/luxon": {
"optional": true
},
"moment": {
"optional": true
},
"@date-io/moment": {
"optional": true
}
},
"release": {
"defaultBranch": "alpha",
"branches": [
"main",
"next",
{
"name": "beta",
"prerelease": true
},
{
"name": "alpha",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github",
"@semantic-release/git"
]
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@date-io/date-fns": "^2.10.8",
"@date-io/dayjs": "^2.10.8",
"@date-io/luxon": "^2.10.8",
"@date-io/moment": "^2.10.8",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-typescript": "^8.2.1",
"@storybook/addon-actions": "^6.2.9",
"@storybook/addon-essentials": "^6.2.9",
"@storybook/addon-links": "^6.2.9",
"@storybook/addon-svelte-csf": "^1.0.0",
"@storybook/addons": "^6.2.9",
"@storybook/svelte": "^6.2.9",
"@sveltejs/eslint-config": "github:sveltejs/eslint-config",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/svelte": "^3.0.3",
"@tsconfig/svelte": "^2.0.1",
"@types/jest": "^26.0.23",
"@types/testing-library__jest-dom": "^5.9.5",
"babel-loader": "^8.1.0",
"date-fns": "^2.21.2",
"dayjs": "^1.10.4",
"del-cli": "^4.0.1",
"eslint": "^7.6.0",
"jest": "^26.6.3",
"luxon": "^1.26.0",
"moment": "^2.29.1",
"rollup": "^2.46.0",
"rollup-plugin-filesize": "^9.1.1",
"rollup-plugin-scss": "^2.6.1",
"rollup-plugin-svelte": "^7.1.0",
"rollup-plugin-terser": "^7.0.2",
"svelte": "^3.38.1",
"svelte-check": "^2.0.0",
"svelte-jester": "^1.0.5",
"svelte-loader": "^3.1.0",
"svelte-preprocess": "^4.7.0",
"ts-jest": "^26.5.5",
"typescript": "^4.2.4"
},
"setupFilesAfterEnv": [
"@testing-library/jest-dom/extend-expect"
],
"files": [
"dist",
"src",
"!src/**/*.test.ts",
"!src/**/*.test.ts.snap",
"!src/**/*.stories.svelte"
],
"eslintConfig": {
"extends": "@sveltejs"
},
"dependencies": {
"@date-io/core": "^2.10.7"
}
}