-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
34 lines (34 loc) · 1.02 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
{
"name": "documentation",
"version": "1.3.0",
"description": "Documentation for the vocascan project",
"main": "index.js",
"scripts": {
"start": "docsify serve ./docs",
"lint": "npm run lint:prettier && npm run lint:md",
"lint:md": "markdownlint **/*.md",
"lint:prettier": "prettier --check **/*.md **/*.html **/*.css **/*.yml",
"lint:fix": "npm run lint:fix:prettier && npm run lint:fix:md",
"lint:fix:md": "markdownlint **/*.md --fix",
"lint:fix:prettier": "prettier --write **/*.md **/*.html **/*.css **/*.yml"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vocascan/documentation.git"
},
"keywords": [
"vocascan",
"documentation"
],
"author": "vocascan <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/vocascan/documentation/issues"
},
"homepage": "https://github.com/vocascan/documentation#readme",
"dependencies": {
"docsify": "^4.12.1",
"markdownlint-cli": "^0.27.1",
"prettier": "^2.3.0"
}
}