-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.23 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.23 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "python-init-generator",
"displayName": "Python init Generator",
"description": "Generate Python __init__.py",
"version": "0.0.15",
"engines": {
"vscode": "^1.75.0"
},
"publisher": "SeeLog",
"categories": [
"Other"
],
"repository": {
"type": "git",
"url": "https://github.com/SeeLog/python-init-generator"
},
"license": "MIT",
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "python-init-generator.generateInit",
"title": "Python init Generator: Generate __init__.py"
},
{
"command": "python-init-generator.generateInitFromLocation",
"title": "Generate __init__.py from here"
}
],
"configuration": [
{
"title": "Python Init Generator",
"properties": {
"pythonInitGenerator.ignoreDirectories": {
"default": [],
"type": "array",
"description": "A list of directories names to ignore"
}
}
}
],
"menus": {
"commandPalette": [
{
"command": "python-init-generator.generateInitFromLocation",
"when": "false"
}
],
"explorer/context": [
{
"command": "python-init-generator.generateInitFromLocation"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js",
"lint": "eslint . --ext .ts",
"fix-lint": "eslint . --ext .ts --fix",
"format": "prettier --write . --ignore-path .gitignore",
"check-format": "prettier --check . --ignore-path .gitignore"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/mocha": "^10.0.1",
"@types/node": "16.x",
"@types/vscode": "^1.75.0",
"@vscode/test-electron": "^2.3.9",
"@vscode/vsce": "^2.24.0",
"mocha": "^10.3.0",
"typescript": "^4.9.4",
"eslint": "^8.33.0",
"prettier": "^2.8.4",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0"
},
"dependencies": {
"glob": "^7.2.3"
}
}