-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
36 lines (36 loc) · 1.03 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
35
36
{
"name": "@microsoft/vscode-file-downloader-api",
"version": "1.0.2",
"description": "Wrapper package for the VS Code File Downloader extension",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/vscode-file-downloader-api.git"
},
"files": [
"out/*",
"CODE_OF_CONDUCT.md",
"LICENSE.md",
"README.md",
"SECURITY.md"
],
"main": "./out/index.js",
"scripts": {
"compile": "tsc -p ./",
"lint": "eslint src --ext ts",
"prepublish": "npm run compile"
},
"author": "mindaro",
"license": "MIT",
"devDependencies": {
"@types/node": "^12.8.1",
"@types/vscode": "^1.41.0",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"eslint": "^7.3.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsdoc": "^25.4.1",
"eslint-plugin-prefer-arrow": "^1.2.1",
"typescript": "^3.5.3",
"lodash": "^4.17.19"
}
}