-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 780 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 780 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
{
"name": "javascript-interview-questions",
"version": "0.1.0",
"description": "A collection of javascript interview question to excel useful concepts of javascript",
"main": "index.js",
"scripts": {
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "https://github.com/sandeep8080/javascript-interview-questions.git"
},
"author": "Sandeep Garg",
"license": "MIT",
"bugs": {
"url": "https://github.com/sandeep8080/javascript-interview-questions/issues"
},
"homepage": "https://github.com/sandeep8080/javascript-interview-questions#readme",
"dependencies": {
"husky": "^9.0.11",
"prettier": "^3.2.5",
"pretty-quick": "^4.0.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}