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
32 lines (32 loc) · 684 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 684 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
32
{
"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"
},
"devDependencies": {
"eslint-plugin-security": "^1.7.1",
"gulp": "^4.0.2",
"husky": "^7.0.0",
"lint-staged": "^12.3.3",
"shelljs": "^0.8.5"
},
"lint-staged": {
"*.{gif,mp4,jpg,png,GIF,MP4,JPG,PNG}": [
"yarn check-lfs"
]
},
"resolutions": {
"glob-parent": ">=5.1.2",
"hosted-git-info": "^3.0.8"
}
}