-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.37 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.37 KB
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
{
"name": "quest-quiz-application",
"version": "1.0.0",
"description": "A modern, accessible, and feature-rich web-based quiz application built with vanilla JavaScript. Features interactive quizzes, dark/light themes, timer functionality, and comprehensive accessibility support.",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "python -m http.server 8000",
"start": "python -m http.server 8000",
"build:css": "node build-css.js",
"build": "npm run build:css",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"quiz",
"javascript",
"vanilla-js",
"interactive",
"educational",
"web-app",
"accessibility",
"responsive",
"dark-theme",
"timer",
"component-based",
"es6",
"html5",
"css3"
],
"author": {
"name": "Ayman Soliman",
"url": "https://github.com/aymansoliman-dev",
"email": "aymansoliman.dev@gmail.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/aymansoliman-dev/quest-quiz-app.git"
},
"homepage": "https://aymansoliman-dev.github.io/Quest",
"bugs": {
"url": "https://github.com/aymansoliman-dev/quest-quiz-app/issues"
},
"engines": {
"node": ">=14.0.0"
},
"browserslist": [
"last 2 versions",
"not dead",
"> 0.5%"
],
"devDependencies": {},
"dependencies": {}
}