|
1 | 1 | {
|
2 |
| - "name": "vscode-alternate-file", |
3 |
| - "displayName": "Alternate File", |
| 2 | + "name": "vscode-alternate-alternate-file", |
| 3 | + "displayName": "Alternate Alternate File", |
4 | 4 | "description": "Switch to and create spec files for any framework",
|
5 |
| - "version": "0.3.1", |
6 |
| - "publisher": "will-wow", |
7 |
| - "author": "Will Ockelmann-Wagner", |
| 5 | + "version": "0.3.2", |
| 6 | + "publisher": "testdouble", |
| 7 | + "author": "Justin Searls <searls@gmail.com>", |
8 | 8 | "repository": {
|
9 | 9 | "type": "git",
|
10 |
| - "url": "https://github.com/alternate-file/vscode-alternate-file.git" |
| 10 | + "url": "https://github.com/testdouble/vscode-alternate-alternate-file.git" |
11 | 11 | },
|
12 | 12 | "license": "MIT",
|
13 | 13 | "engines": {
|
14 |
| - "vscode": ">=1.23.0", |
15 |
| - "node": ">=8.11.3" |
| 14 | + "vscode": "^1.75.0" |
16 | 15 | },
|
17 | 16 | "keywords": [
|
18 | 17 | "vscode",
|
19 | 18 | "alternate",
|
20 | 19 | "spec",
|
21 | 20 | "test",
|
22 | 21 | "projectile",
|
23 |
| - "projections" |
| 22 | + "projections", |
| 23 | + "projectionist" |
24 | 24 | ],
|
25 | 25 | "categories": [
|
26 | 26 | "Other"
|
27 | 27 | ],
|
28 |
| - "badges": [ |
29 |
| - { |
30 |
| - "url": "https://img.shields.io/azure-devops/build/AlternateFile/17c9d9be-71eb-46c2-8af1-e017d13fb009/1/master.svg", |
31 |
| - "href": "https://dev.azure.com/AlternateFile/VsCodeAlternateFile/_build/latest?definitionId=1&branchName=master", |
32 |
| - "description": "Build Status" |
33 |
| - }, |
34 |
| - { |
35 |
| - "url": "https://img.shields.io/david/alternate-file/vscode-alternate-file.svg", |
36 |
| - "href": "https://david-dm.org/alternate-file/vscode-alternate-file", |
37 |
| - "description": "Dependencies" |
38 |
| - } |
39 |
| - ], |
40 | 28 | "icon": "assets/icon.png",
|
41 | 29 | "galleryBanner": {
|
42 | 30 | "color": "#172F54",
|
43 | 31 | "theme": "dark"
|
44 | 32 | },
|
45 |
| - "activationEvents": [ |
46 |
| - "onCommand:alternate.initProjections", |
47 |
| - "onCommand:alternate.alternateFile", |
48 |
| - "onCommand:alternate.alternateFileInSplit", |
49 |
| - "onCommand:alternate.createAlternateFile", |
50 |
| - "onCommand:alternate.createAlternateFileInSplit" |
51 |
| - ], |
52 | 33 | "main": "./out/extension",
|
53 | 34 | "contributes": {
|
54 | 35 | "commands": [
|
55 | 36 | {
|
56 |
| - "command": "alternate.initProjections", |
| 37 | + "command": "alternateFile.initProjections", |
57 | 38 | "title": "Initialize Projections File"
|
58 | 39 | },
|
59 | 40 | {
|
60 |
| - "command": "alternate.alternateFile", |
| 41 | + "command": "alternateFile.alternateFile", |
61 | 42 | "title": "Alternate File"
|
62 | 43 | },
|
63 | 44 | {
|
64 |
| - "command": "alternate.alternateFileInSplit", |
| 45 | + "command": "alternateFile.alternateFileInSplit", |
65 | 46 | "title": "Alternate File in Split"
|
66 | 47 | },
|
67 | 48 | {
|
68 |
| - "command": "alternate.createAlternateFile", |
| 49 | + "command": "alternateFile.createAlternateFile", |
69 | 50 | "title": "Create Alternate File"
|
70 | 51 | },
|
71 | 52 | {
|
72 |
| - "command": "alternate.createAlternateFileInSplit", |
| 53 | + "command": "alternateFile.createAlternateFileInSplit", |
73 | 54 | "title": "Create Alternate File in Split"
|
74 | 55 | }
|
75 | 56 | ]
|
76 | 57 | },
|
77 | 58 | "scripts": {
|
78 |
| - "vscode:prepublish": "npm run compile", |
| 59 | + "vscode:prepublish": "yarn run compile", |
79 | 60 | "compile": "tsc -p ./",
|
80 | 61 | "watch": "tsc -watch -p ./",
|
81 |
| - "postinstall": "vscode-install", |
82 |
| - "preversion": "npm run lint", |
83 |
| - "test": "npm run compile && CODE_TESTS_WORKSPACE=./test-project CODE_DISABLE_EXTENSIONS=true node ./node_modules/vscode/bin/test", |
84 |
| - "lint": "npm run lint-tslint && npm run lint-prettier", |
| 62 | + "preversion": "yarn run lint", |
| 63 | + "test": "yarn run compile && CODE_TESTS_WORKSPACE=./test-project CODE_DISABLE_EXTENSIONS=true node ./node_modules/vscode/bin/test", |
| 64 | + "lint": "yarn run lint-tslint && yarn run lint-prettier", |
85 | 65 | "lint-tslint": "tslint -p . --config tslint.json",
|
86 | 66 | "lint-prettier": "prettier --list-different \"**/*.{ts,json,md,yml}\"",
|
87 |
| - "format": "npm run format-tslint && npm run format-prettier", |
| 67 | + "format": "yarn run format-tslint && yarn run format-prettier", |
88 | 68 | "format-tslint": "tslint -p . --fix --config tslint.json",
|
89 |
| - "format-prettier": "prettier --write \"**/*.{ts,json,md,yml}\"" |
| 69 | + "format-prettier": "prettier --write \"**/*.{ts,json,md,yml}\"", |
| 70 | + "vsce:package": "vsce package --no-yarn --githubBranch main", |
| 71 | + "vsce:publish": "vsce publish --no-yarn --githubBranch main" |
90 | 72 | },
|
91 | 73 | "devDependencies": {
|
92 | 74 | "@types/mocha": "^5.2.6",
|
93 | 75 | "@types/sinon": "^7.0.9",
|
| 76 | + "@vscode/vsce": "^2.18.0", |
94 | 77 | "chai": "^4.2.0",
|
95 | 78 | "chai-spies": "^1.0.0",
|
96 | 79 | "prettier": "^1.16.4",
|
|
0 commit comments