-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.06 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
{
"name": "wall-clock",
"version": "2.0.0",
"author": "Wasiu Ramoni",
"description": "Advance analogue clock",
"type": "module",
"main": "main.js",
"license": "MIT",
"keywords": [
"clock",
"watch",
"digital",
"clock",
"wall clock"
],
"directories": {
"doc": "docs"
},
"scripts": {
"lint": "eslint .",
"dev": "vite",
"test": "jest",
"build": "vite build",
"preview": "vite preview",
"deploy": "gh-pages -d dist"
},
"devDependencies": {
"@babel/preset-env": "^7.26.7",
"@eslint/js": "^9.17.0",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.14",
"babel-jest": "^29.7.0",
"eslint": "^9.19.0",
"gh-pages": "^6.3.0",
"globals": "^15.14.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"vite": "^6.0.7",
"vite-plugin-static-copy": "^2.2.0"
},
"overrides": {
"ajv": "^8.17.1",
"whatwg-url": "^14.0.0"
}
}