-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.13 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.13 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
{
"name": "javascript-core-concepts",
"version": "1.0.0",
"description": "A comprehensive collection of JavaScript concepts explained with examples and documentation. Covers basics, advanced topics, async programming, event loop, ES6+ features, DOM, memory management, and design patterns.",
"author": {
"name": "Harshit Kumar",
"url": "https://github.com/harshitclub"
},
"license": "MIT",
"type": "commonjs",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "echo \"No tests yet. Add examples under each concept folder.\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/harshitclub/javascript-core-concepts.git"
},
"bugs": {
"url": "https://github.com/harshitclub/javascript-core-concepts/issues"
},
"homepage": "https://github.com/harshitclub/javascript-core-concepts#readme",
"keywords": [
"javascript",
"js",
"ecmascript",
"es6",
"async",
"event-loop",
"closures",
"promises",
"async-await",
"functional-programming",
"dom",
"memory-management",
"design-patterns",
"frontend",
"backend"
]
}