-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
139 lines (139 loc) · 3.52 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "scuri-code",
"version": "1.3.2",
"displayName": "Scuri Code",
"description": "Run Scuri from VS Code",
"publisher": "gparlakov",
"engines": {
"vscode": "^1.36.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:scuri:generate",
"onCommand:scuri:overwrite",
"onCommand:scuri:update",
"onCommand:scuri:install-deps",
"onCommand:scuri:auto-spy"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "scuri:generate",
"title": "SCuri Create Spec"
},
{
"command": "scuri:update",
"title": "SCuri Update Spec"
},
{
"command": "scuri:overwrite",
"title": "SCuri Create Spec (overwrite)"
},
{
"command": "scuri:install-deps",
"title": "SCuri Install Dependencies"
},
{
"command": "scuri:auto-spy",
"title": "SCuri Create autospy"
}
],
"configuration": {
"title": "Scuri Code",
"properties": {
"scuri-code.scuri-version": {
"type": "string",
"default": "latest",
"description": "What scuri version to use: 'latest' or 'next' or a specific '1.2.0'. Run command scuri:Install deps after changing this"
},
"scuri-code.angular-schematics-version": {
"type": "string",
"default": "latest",
"description": "What @angular-devkit/schematics-cli version to use: 'latest' or 'next' or a specific '1.2.0'. Run command scuri:Install deps after changing this"
},
"scuri-code.typescript-version": {
"type": "string",
"default": "latest",
"description": "What typescript version to use: 'latest' or 'next' or a specific '4.8.0'. Run command scuri:Install deps after changing this"
}
}
}
},
"icon": "images/logo.png",
"scripts": {
"vscode:prepublish": "webpack --mode production",
"compile": "webpack --mode none",
"watch": "webpack --mode none --watch",
"test-compile": "rimraf out/ && tsc -p ./ && copyfiles -u 2 src/test/testworkspace/**/*.* out/ && copyfiles -u 2 src/test/testworkspace/*.* out/",
"pretest": "npm run test-compile",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/glob": "^7.1.1",
"@types/mocha": "^5.2.6",
"@types/node": "^10.12.21",
"@types/vscode": "^1.36.0",
"@types/webpack": "4.1.4",
"copyfiles": "^2.4.1",
"glob": "^7.1.4",
"husky": "^6.0.0",
"lodash": "^4.17.21",
"mocha": "^6.2.3",
"rimraf": "^2.6.3",
"semantic-release": "^17.4.3",
"semantic-release-vsce": "^5.1.0",
"ts-loader": "^6.0.4",
"tslint": "^5.12.1",
"typescript": "^4.3.2",
"vsce": "^2.10.2",
"vscode-test": "^1.5.2",
"webpack": "^4.35.2",
"webpack-cli": "^3.3.5"
},
"repository": {
"type": "github",
"url": "https://github.com/gparlakov/scuri-code"
},
"prettier": {
"printWidth": 110,
"singleQuote": true
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"semantic-release-vsce"
],
"verifyConditions": [
"semantic-release-vsce",
"@semantic-release/github"
],
"prepare": {
"path": "semantic-release-vsce",
"packageVsix": true
},
"publish": [
"semantic-release-vsce",
{
"path": "@semantic-release/github",
"assets": "*.vsix"
}
]
},
"__metadata": {
"id": "cf115cab-a97e-41b7-aa75-2c6bb6a7aace",
"publisherDisplayName": "Georgi Parlakov",
"publisherId": "6aec166a-965a-4a78-87a6-1cd6d3ad6407",
"isPreReleaseVersion": false
}
}