-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
92 lines (92 loc) · 2.72 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
{
"name": "svelte-timezone-picker",
"version": "2.0.3",
"engines": {
"node": ">= 10",
"npm": ">= 6"
},
"repository": {
"type": "git",
"url": "https://github.com/tricinel/svelte-timezone-picker.git"
},
"bugs": {
"url": "https://github.com/tricinel/svelte-timezone-picker/issues"
},
"homepage": "https://github.com/tricinel/svelte-timezone-picker#readme",
"module": "lib/index.mjs",
"main": "lib/index.js",
"svelte": "src/index.js",
"browser": "web/index.js",
"author": "Bogdan Lazar",
"license": "MIT",
"keywords": [
"svelte",
"timezone picker",
"timezone",
"datetime",
"web component"
],
"files": [
"src",
"lib",
"web"
],
"scripts": {
"prebuild": "yarn lint",
"build:web": "rollup -c ./rollup.config.web.js",
"build:prod": "rollup -c ./rollup.config.js",
"build": "npm-run-all --parallel build:**",
"dev": "snowpack dev",
"start": "sirv demo",
"lint": "eslint src/**/*.{svelte,js}",
"test": "jest src --silent",
"test:watch": "jest src --watch",
"test:ci": "jest src --silent -i",
"test:cy": "start-server-and-test 'yarn dev' http-get://localhost:4000 'cypress open'",
"test:cy:headless": "start-server-and-test 'yarn dev' http-get://localhost:4000 'cypress run --headless --quiet'",
"prepublishOnly": "npm-run-all build --parallel test test:cy:headless"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@snowpack/plugin-dotenv": "^2.0.4",
"@snowpack/plugin-svelte": "^3.3.0",
"@testing-library/cypress": "^7.0.1",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/svelte": "^3.0.0",
"@testing-library/user-event": "^12.1.5",
"babel-jest": "^26.3.0",
"cypress": "^5.6.0",
"date-fns": "^2.14.0",
"date-fns-tz": "^1.0.10",
"eslint": "^7.9.0",
"eslint-config-frontwerk": "^1.0.2",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.0.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-svelte3": "^2.7.3",
"jest": "^26.4.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.1",
"prettier-plugin-svelte": "^1.2.1",
"rollup": "^2.26.11",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-svelte": "^6.0.1",
"rollup-plugin-terser": "^7.0.2",
"sirv-cli": "^1.0.6",
"snowpack": "^2.17.0",
"start-server-and-test": "^1.11.5",
"svelte": "^3.25.0",
"svelte-jester": "^1.1.5"
},
"dependencies": {
"compute-scroll-into-view": "^1.0.16"
},
"peerDependencies": {
"svelte": "^3.25.0"
}
}