-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.17 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.17 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
87
88
89
90
91
92
93
94
95
96
97
{
"name": "work-as-two",
"displayName": "work-as-two",
"author": {
"name": "peni4142"
},
"description": "Opens the associated file for simultaneous work on two files.",
"version": "0.1.1",
"icon": "work-as-two.jpg",
"license": "GPL-3.0-or-later",
"publisher": "peni4142",
"keywords": [
"tdd",
"testdriven",
"web",
"html",
"css",
"split",
"screen",
"splitscreen"
],
"repository": {
"url": "https://github.com/peni4142/work-as-two"
},
"engines": {
"vscode": "^1.41.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./dist/extension.js",
"contributes": {
"properties": {
"work-as-two.leftEscapedRegex": {
"description": "example: ^(.*)(\\.ts)$",
"type": [
"string"
],
"default": "^(.*)(\\.ts)$",
"scope": "resource"
},
"work-as-two.leftTransformToRight": {
"description": "example: $1.test$2",
"type": [
"string"
],
"default": "$1.test$2",
"scope": "resource"
},
"work-as-two.rightEscapedRegex": {
"description": "example: ^(.*)(\\.ts)$",
"type": [
"string"
],
"default": "^(.*)(\\.ts)$",
"scope": "resource"
},
"work-as-two.rightTransformToLeft": {
"description": "example: ^(.*)\\.test(\\.ts)$",
"type": [
"string"
],
"default": "$1$2",
"scope": "resource"
}
}
},
"scripts": {
"vscode:prepublish": "npm run build",
"compile": "webpack --mode development",
"test:compile": "tsc -p ./",
"watch": "webpack --mode development -w",
"pretestVscode": "npm run compile",
"test": "npm run unit-test && npm run integration-test",
"unit-test": "mocha -r ts-node/register src/logic/**/*.unit-test.ts -u tdd",
"integration-test": "tsc -p ./&& npm run compile && node ./out/integration/integrationtests/testRunner.js",
"build": "webpack --mode production"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/mocha": "^5.2.7",
"@types/node": "^12.11.7",
"@types/vscode": "^1.41.0",
"glob": "^7.1.5",
"mocha": "^7.0.1",
"ts-loader": "^6.2.1",
"ts-node": "^8.6.2",
"tslint": "^5.20.0",
"typescript": "^3.6.4",
"vscode-test": "^1.2.2",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
}
}