-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·38 lines (38 loc) · 948 Bytes
/
package.json
File metadata and controls
executable file
·38 lines (38 loc) · 948 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
32
33
34
35
36
37
38
{
"name": "ultimate-javascript",
"version": "1.2.1",
"description": "Ultimate Preparation Guide for the JavaScript Interview 🌟",
"main": "README.md",
"type": "module",
"scripts": {
"lint": "npx prettier --check ./ --ignore-unknown",
"lint:fix": "npx prettier --write ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aolenevme/ultimate-javascript.git"
},
"keywords": [
"javascript",
"prototype",
"frontend",
"backend",
"async",
"rendering",
"this",
"interview",
"interview-practice",
"interview-questions",
"interview-preparation",
"ultimate-javascript"
],
"author": "Alexander Olenev <hello@aolenev.me>",
"license": "MIT",
"bugs": {
"url": "https://github.com/aolenevme/ultimate-javascript/issues"
},
"homepage": "https://github.com/aolenevme/ultimate-javascript#readme",
"devDependencies": {
"prettier": "2.8.3"
}
}