-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
109 lines (109 loc) · 3.2 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
{
"name": "vscode-alternate-file",
"displayName": "Alternate File",
"description": "Switch to and create spec files for any framework",
"version": "0.3.1",
"publisher": "will-wow",
"author": "Will Ockelmann-Wagner",
"repository": {
"type": "git",
"url": "https://github.com/alternate-file/vscode-alternate-file.git"
},
"license": "MIT",
"engines": {
"vscode": ">=1.23.0",
"node": ">=8.11.3"
},
"keywords": [
"vscode",
"alternate",
"spec",
"test",
"projectile",
"projections"
],
"categories": [
"Other"
],
"badges": [
{
"url": "https://img.shields.io/azure-devops/build/AlternateFile/17c9d9be-71eb-46c2-8af1-e017d13fb009/1/master.svg",
"href": "https://dev.azure.com/AlternateFile/VsCodeAlternateFile/_build/latest?definitionId=1&branchName=master",
"description": "Build Status"
},
{
"url": "https://img.shields.io/david/alternate-file/vscode-alternate-file.svg",
"href": "https://david-dm.org/alternate-file/vscode-alternate-file",
"description": "Dependencies"
}
],
"icon": "assets/icon.png",
"galleryBanner": {
"color": "#172F54",
"theme": "dark"
},
"activationEvents": [
"onCommand:alternate.initProjections",
"onCommand:alternate.alternateFile",
"onCommand:alternate.alternateFileInSplit",
"onCommand:alternate.createAlternateFile",
"onCommand:alternate.createAlternateFileInSplit"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "alternate.initProjections",
"title": "Initialize Projections File"
},
{
"command": "alternate.alternateFile",
"title": "Alternate File"
},
{
"command": "alternate.alternateFileInSplit",
"title": "Alternate File in Split"
},
{
"command": "alternate.createAlternateFile",
"title": "Create Alternate File"
},
{
"command": "alternate.createAlternateFileInSplit",
"title": "Create Alternate File in Split"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "vscode-install",
"preversion": "npm run lint",
"test": "npm run compile && CODE_TESTS_WORKSPACE=./test-project CODE_DISABLE_EXTENSIONS=true node ./node_modules/vscode/bin/test",
"lint": "npm run lint-tslint && npm run lint-prettier",
"lint-tslint": "tslint -p . --config tslint.json",
"lint-prettier": "prettier --list-different \"**/*.{ts,json,md,yml}\"",
"format": "npm run format-tslint && npm run format-prettier",
"format-tslint": "tslint -p . --fix --config tslint.json",
"format-prettier": "prettier --write \"**/*.{ts,json,md,yml}\""
},
"devDependencies": {
"@types/mocha": "^5.2.6",
"@types/sinon": "^7.0.9",
"chai": "^4.2.0",
"chai-spies": "^1.0.0",
"prettier": "^1.16.4",
"sinon": "^7.2.7",
"tslint": "^5.13.1",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.3.3333",
"vscode": "^1.1.30"
},
"dependencies": {
"@types/node": "^11.10.0",
"alternate-file": "^0.2.6",
"result-async": "^1.3.0"
}
}