-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.06 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
{
"name": "fed-reference",
"version": "1.0.0",
"description": "A minimalistic curated list of references on Front-End Development for people who are just starting out with their Front-End journey.",
"scripts": {
"base-prettier": "prettier --ignore-path .gitignore",
"format": "npm run base-prettier -- --write \"**/*.{md,js}\"",
"lint-md": "check-all-markdown . --no-check-links",
"lint-md-check-links": "check-all-markdown .",
"lint": "npm run lint-md"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{md,js}": [
"npm run base-prettier -- --write",
"npm run lint",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexilyaev/fed-reference.git"
},
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/alexilyaev/fed-reference/issues"
},
"homepage": "https://github.com/alexilyaev/fed-reference#readme",
"devDependencies": {
"check-all-markdown": "1.4.0",
"eslint": "6.1.0",
"prettier": "1.18.2"
}
}