-
-
Notifications
You must be signed in to change notification settings - Fork 9.2k
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.62 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.62 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
55
56
57
58
59
60
61
{
"name": "33-js-concepts",
"version": "1.0.0",
"description": "A curated collection of 33 essential JavaScript concepts every developer should master. Includes comprehensive learning resources, articles, videos, and interactive code examples covering everything from call stack and closures to async/await and design patterns.",
"main": "index.js",
"author": {
"name": "Leonardo Maldonado",
"url": "https://github.com/leonardomso"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/leonardomso/33-js-concepts/issues"
},
"homepage": "https://github.com/leonardomso/33-js-concepts#readme",
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"docs": "cd docs && npx mintlify dev",
"docs:build": "cd docs && npx mintlify build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leonardomso/33-js-concepts.git"
},
"keywords": [
"javascript",
"javascript-concepts",
"javascript-learning",
"javascript-tutorial",
"learn-javascript",
"closures",
"promises",
"async-await",
"event-loop",
"prototypes",
"scope",
"hoisting",
"coercion",
"this-keyword",
"call-stack",
"higher-order-functions",
"functional-programming",
"design-patterns",
"data-structures",
"algorithms",
"es6",
"ecmascript",
"web-development",
"frontend",
"nodejs",
"programming",
"developer-resources",
"interview-preparation"
],
"devDependencies": {
"@vitest/coverage-v8": "^4.0.16",
"jsdom": "^27.4.0",
"vitest": "^4.0.16"
}
}