-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
49 lines (49 loc) · 1.15 KB
/
package.json
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
{
"name": "awesome-talents",
"description": "Explore top talents worldwide.",
"version": "1.0.0",
"license": "MIT",
"author": {
"name": "Dmitrii Selikhov",
"email": "[email protected]",
"url": "https://www.linkedin.com/in/dimetrix"
},
"contributors": [
{
"name": "Dmitry (Di) Selikhov",
"email": "[email protected]",
"url": "https://www.linkedin.com/in/dimetrix"
}
],
"email": "[email protected]",
"homepage": "https://github.com/idimetrix/awesome-talents#readme",
"url": "https://github.com/idimetrix/awesome-talents/issue",
"bugs": {
"url": "https://github.com/idimetrix/awesome-talents/issues"
},
"keywords": [],
"files": [
"package.json",
"README.md"
],
"main": "index.js",
"scripts": {
"format": "prettier --write README.md",
"prepare": "husky install",
"pre-commit": "lint-staged",
"pre-push": "lint-staged",
"lint-staged": "lint-staged"
},
"dependencies": {
"prettier": "3.3.3"
},
"devDependencies": {
"husky": "9.1.6",
"lint-staged": "15.2.10"
},
"lint-staged": {
"**/*": [
"npm run format"
]
}
}