-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.31 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.31 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
{
"name": "javascript-interview-questions",
"version": "2.0.0",
"description": "450+ JavaScript interview questions with detailed answers, practice exercises, and common mistakes",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"serve": "docsify serve . --port 3000",
"start": "npm run serve",
"build": "node scripts/build.js",
"preview": "docsify serve . --port 8080",
"lint": "markdownlint docs/**/*.md --ignore node_modules",
"format": "prettier --write \"**/*.{md,json,js}\"",
"deploy": "gh-pages -d ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/BilgeGates/Js-Interview-Questions.git"
},
"keywords": [
"javascript",
"interview-questions",
"coding-interview",
"frontend",
"web-development",
"es6",
"async",
"promises",
"documentation",
"tutorial"
],
"author": "BilgeGates <your.email@example.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/BilgeGates/Js-Interview-Questions/issues"
},
"homepage": "https://bilgegates.github.io/Js-Interview-Questions/",
"devDependencies": {
"docsify-cli": "^4.4.4",
"gh-pages": "^6.1.0",
"markdownlint-cli": "^0.47.0",
"prettier": "^3.1.0"
},
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
}
}