forked from microsoft/vscode-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 750 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 750 Bytes
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
{
"name": "vscode-docs",
"version": "0.10.3",
"author": {
"name": "Microsoft Corporation"
},
"repository": {
"type": "git",
"url": "https://github.com/microsoft/vscode-docs.git"
},
"scripts": {
"check-lfs": "node ./build/check-lfs.js",
"lint": "eslint **/*.js",
"prepare": "husky install",
"generate-sidebar": "node ./build/generate-sidebar.js",
"serve": "npm run generate-sidebar && docsify serve ."
},
"devDependencies": {
"docsify-cli": "^4.4.4",
"eslint-plugin-security": "^1.7.1",
"gulp": "~5.0.0",
"husky": "^7.0.0",
"lint-staged": "^12.3.3",
"shelljs": "^0.8.5"
},
"lint-staged": {
"*.{gif,mp4,jpg,png,GIF,MP4,JPG,PNG}": [
"npm run check-lfs"
]
}
}