-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.77 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
{
"name": "web-clocks",
"version": "1.0.0",
"description": "Web components showing an analogue clock and a digital clock known from Svelte examples.",
"homepage": "https://github.com/prantlf/web-clocks#readme",
"author": {
"name": "Ferdinand Prantl",
"email": "[email protected]",
"url": "http://prantl.tk"
},
"repository": {
"type": "git",
"url": "https://github.com/prantlf/web-clocks.git"
},
"bugs": {
"url": "https://github.com/prantlf/web-clocks/issues"
},
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/prantlf/web-clocks/blob/master/LICENSE"
}
],
"engines": {
"node": ">=16"
},
"svelte": "src/index.js",
"module": "dist/index.mjs",
"main": "dist/index.js",
"files": [
"src",
"dist"
],
"scripts": {
"prepare": "rollup -c",
"dev": "rollup -cw",
"start": "sirv",
"lint": "eslint src",
"check": "jest",
"test": "npm run lint && npm run check"
},
"jest": {
"runner": "@kayahr/jest-electron-runner",
"testEnvironment": "@kayahr/jest-electron-runner/environment",
"setupFiles": [
"./dist/index.js"
]
},
"devDependencies": {
"@kayahr/jest-electron-runner": "^29.3.1",
"@rollup/plugin-node-resolve": "^15.0.2",
"eslint": "^8.40.0",
"eslint-plugin-svelte": "^2.27.3",
"jest": "^29.5.0",
"rollup": "^3.21.5",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-svelte": "^7.1.4",
"rollup-plugin-swc-minify": "^1.0.6",
"sirv-cli": "^2.0.2",
"svelte": "^3.59.0"
},
"overrides": {
"@rollup/pluginutils": "^5.0.2"
},
"keywords": [
"svelte",
"web-component",
"webcomponent",
"analogue-clock",
"digital-clock",
"clock",
"analogue",
"digital"
]
}