-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.16 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
{
"name": "javascript-600-club-dev",
"version": "1.0.0",
"description": "A structured JavaScript problem-solving journey featuring\r 600 solutions from the book `**_Marhaba JavaScript-e Maro Thaba_**` by Jhankar Mahbub.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"format": "prettier . --write",
"prepare": "husky"
},
"lint-staged": {
"*.{js,mjs}": [
"eslint --fix",
"prettier --write"
],
"*.{md,json,yml,yaml}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/moinsoft/javascript-600-club.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/moinsoft/javascript-600-club/issues"
},
"homepage": "https://github.com/moinsoft/javascript-600-club#readme",
"devDependencies": {
"@commitlint/cli": "^21.2.1",
"@commitlint/config-conventional": "^21.2.0",
"@eslint/js": "^10.0.1",
"eslint": "^10.8.0",
"globals": "^17.8.0",
"husky": "^9.1.7",
"lint-staged": "^17.3.0",
"prettier": "^3.9.6"
}
}