forked from alternate-file/vscode-alternate-file
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
92 lines (92 loc) · 2.62 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
{
"name": "vscode-alternate-alternate-file",
"displayName": "Alternate Alternate File",
"description": "Switch to and create spec files for any framework",
"version": "0.3.2",
"publisher": "testdouble",
"author": "Justin Searls <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/testdouble/vscode-alternate-alternate-file.git"
},
"license": "MIT",
"engines": {
"vscode": "^1.75.0"
},
"keywords": [
"vscode",
"alternate",
"spec",
"test",
"projectile",
"projections",
"projectionist"
],
"categories": [
"Other"
],
"icon": "assets/icon.png",
"galleryBanner": {
"color": "#172F54",
"theme": "dark"
},
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "alternateFile.initProjections",
"title": "Initialize Projections File"
},
{
"command": "alternateFile.alternateFile",
"title": "Alternate File"
},
{
"command": "alternateFile.alternateFileInSplit",
"title": "Alternate File in Split"
},
{
"command": "alternateFile.createAlternateFile",
"title": "Create Alternate File"
},
{
"command": "alternateFile.createAlternateFileInSplit",
"title": "Create Alternate File in Split"
}
]
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"preversion": "yarn run lint",
"test": "yarn run compile && CODE_TESTS_WORKSPACE=./test-project CODE_DISABLE_EXTENSIONS=true node ./node_modules/vscode/bin/test",
"lint": "yarn run lint-tslint && yarn run lint-prettier",
"lint-tslint": "tslint -p . --config tslint.json",
"lint-prettier": "prettier --list-different \"**/*.{ts,json,md,yml}\"",
"format": "yarn run format-tslint && yarn run format-prettier",
"format-tslint": "tslint -p . --fix --config tslint.json",
"format-prettier": "prettier --write \"**/*.{ts,json,md,yml}\"",
"vsce:package": "vsce package --no-yarn --githubBranch main",
"vsce:publish": "vsce publish --no-yarn --githubBranch main"
},
"devDependencies": {
"@types/mocha": "^5.2.6",
"@types/sinon": "^7.0.9",
"@vscode/vsce": "^2.18.0",
"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"
}
}