-
Notifications
You must be signed in to change notification settings - Fork 228
/
Copy pathpackage.json
37 lines (36 loc) · 901 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
{
"name": "docs-content",
"description": "Markdown contents submodule for Scaleway docs website.",
"version": "0.1.0",
"license": "CC-BY-NC-SA-4.0",
"private": true,
"homepage": "https://github.com/scaleway/docs-content#readme",
"author": "@fronteamweb",
"contributors": [
"@teamdoc"
],
"keywords": [
"scaleway",
"docs",
"markdown"
],
"repository": "github:scaleway/docs-content",
"lint-staged": {
"*.json": [
"yarn format"
]
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"husky": "^8.0.3",
"lint-staged": "^15.4.3",
"prettier": "^3.4.2"
},
"scripts": {
"prepare": "husky install",
"check-slugs": "bin/list-invalid-slugs",
"clean-categories": "bin/clean-categories",
"format": "yarn run prettier --config .prettierrc --write \"**/*.json\""
}
}