-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 997 Bytes
/
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": "blindnet-devrel-management",
"version": "1.0.0",
"private": "true",
"scripts": {
"lint:md": "markdownlint .",
"lint:prettier": "prettier --check .",
"lint": "run-s lint:*",
"format:prettier": "prettier --write .",
"format:md": "npm run lint:md -- --fix",
"format": "run-s format:*",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blindnet-io/devrel-management.git"
},
"author": "Noël Macé",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/blindnet-io/devrel-management/issues"
},
"homepage": "https://github.com/blindnet-io/devrel-management#readme",
"devDependencies": {
"husky": "^7.0.4",
"lint-staged": "^12.3.5",
"markdownlint-cli": "^0.31.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1"
},
"lint-staged": {
"*.{js,css,yml}": "prettier --write",
"*.md": [
"prettier --write",
"markdownlint --fix"
]
}
}