-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 838 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 838 Bytes
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
{
"name": "learn-javascript",
"version": "0.0.1",
"description": "Learn JavaScript with beginner-friendly, chapter-wise notes, clear explanations, and practical examples from basics to advanced concepts.",
"keywords": [
"javascript",
"education",
"documentation",
"javascript-tutorial",
"beginner-friendly",
"learn-javascript",
"basic-javascript",
"learning-resources",
"javascript-course",
"javascript-for-beginners"
],
"repository": {
"type": "git",
"url": "git@github-personal:jaganganesh/learn-javascript.git"
},
"license": "GPL-3.0-or-later",
"author": "Jagan Ganesh",
"type": "module",
"scripts": {
"format": "prettier --write \"**/*.md\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"prettier": "^3.8.1"
}
}