-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
102 lines (102 loc) · 2.41 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "adr-tools",
"displayName": "adr-tools",
"description": "Architecture Decision Records tool",
"version": "0.0.3",
"publisher": "vincent-ledu",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vincent-ledu/vscode-adr-tools-extension.git"
},
"engines": {
"vscode": "^1.31.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.adr-init",
"onCommand:extension.adr-new",
"onCommand:extension.adr-link",
"onCommand:extension.adr-change-status",
"onCommand:extension.adr-generate-doc"
],
"main": "./extension.js",
"contributes": {
"configuration": [
{
"title": "Configuration for ADR templates",
"properties": {
"adr.templates.repo": {
"type": "string",
"description": "url from where templates are cloned",
"default": "https://github.com/vincent-ledu/adr-template.git"
},
"adr.templates.directory": {
"type": "string",
"description": "Source folder where template are git cloned",
"default": "./.adr-templates"
},
"adr.project.directory": {
"type": "string",
"description": "Destination folder for ADR",
"default": "./doc/adr"
},
"adr.log.enable": {
"type": "boolean",
"description": "true to activate logging",
"default": false
}
}
}
],
"commands": [
{
"command": "extension.adr-init",
"title": "ADR Init"
},
{
"command": "extension.adr-new",
"title": "ADR New"
},
{
"command": "extension.adr-link",
"title": "ADR Link"
},
{
"command": "extension.adr-change-status",
"title": "ADR Change Status"
},
{
"command": "extension.adr-generate-doc",
"title": "ADR Generate documentations"
}
]
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "mkdir $TEMP && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "5.2.7",
"@types/node": "12.0.10",
"mocha": "6.1.4",
"cross-env": "^5.2.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"typescript": "^3.3.1",
"vscode": "^1.1.28"
},
"dependencies": {
"minimist": "^1.2.0",
"mustache": "^3.1.0",
"plugin-error": "^1.0.1",
"winston": "^3.2.1",
"winston-console-for-electron": "0.0.6"
}
}