forked from Thiht/vscode-venom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "vscode-venom",
"displayName": "Venom",
"description": "Venom integration with Visual Studio Code",
"version": "1.7.1",
"publisher": "thiht",
"author": {
"name": "Thibaut Rousseau"
},
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Thiht/vscode-venom"
},
"bugs": {
"url": "https://github.com/Thiht/vscode-venom/issues"
},
"icon": "vscode-venom.png",
"engines": {
"vscode": "^1.64.0"
},
"categories": [
"Testing"
],
"activationEvents": [
"workspaceContains:**/*.venom.yml",
"workspaceContains:**/.venomrc",
"onCommand:venom.jsonToAssertions"
],
"extensionDependencies": [
"redhat.vscode-yaml"
],
"contributes": {
"languages": [
{
"id": "yaml",
"filenames": [
".venomrc"
]
}
],
"yamlValidation": [
{
"fileMatch": "/.venomrc",
"url": "./schema/venomrc.schema.json"
}
],
"commands": [
{
"category": "Venom",
"title": "Convert JSON to Venom assertions",
"command": "venom.jsonToAssertions"
}
],
"configuration": {
"title": "Venom",
"properties": {
"venom.binaryLocation": {
"type": "string",
"default": "venom",
"description": "Path to the `venom` binary."
},
"venom.additionalRunArguments": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"description": "Additional arguments to provide to the `venom run` command. Use a .venomrc file instead if possible."
}
}
}
},
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint . --ext .ts",
"watch": "tsc -watch -p ./",
"download-api": "vscode-dts dev",
"postdownload-api": "vscode-dts main",
"postinstall": "npm run download-api",
"format": "prettier --write .",
"prepare": "husky install"
},
"devDependencies": {
"@types/js-yaml": "^4.0.5",
"@types/node": "^14.16.0",
"@types/which": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.4",
"prettier": "2.5.1",
"typescript": "^4.5.5",
"vscode-dts": "^0.3.3"
},
"dependencies": {
"js-yaml": "^4.1.0",
"which": "^2.0.2"
},
"lint-staged": {
"*.{ts}": "eslint --cache --fix",
"*.{ts,json,yml}": "prettier --write"
}
}