forked from appi-solutions/vs-auto-header
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.63 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
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
{
"name": "vs-auto-header",
"displayName": "vs-auto-header",
"description": "Insert header comment after creating a file or opening a file.",
"version": "1.1.0",
"publisher": "cesumilo",
"repository": "https://github.com/cesumilo/vs-auto-header",
"author": {
"name": "Guillaume Robin"
},
"license": "SEE LICENSE IN license.txt",
"engines": {
"vscode": "^1.0.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./src/index",
"contributes": {
"configuration": {
"type": "object",
"title": "File header Configuration",
"properties": {
"fileheader.Author": {
"type": "string",
"default": "Firstname Lastname",
"description": "Wholename of the developer"
},
"fileheader.Email": {
"type": "string",
"default": "[email protected]",
"description": "E-mail of the developer"
},
"fileheader.Copyrights": {
"type": "string",
"default": "GNU General Public License v3.0",
"description": "Copyright"
}
}
}
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"prettier": "prettier --write \"{src,test}/**/*.{js,json,md}\""
},
"devDependencies": {
"eslint": "^5.7.0",
"husky": "^1.1.4",
"lint-staged": "^7.3.0",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"vscode": "^1.1.37"
},
"dependencies": {
"config": "^2.0.1",
"moment": "^2.22.2",
"remove": "^0.1.5"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}