-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
126 lines (126 loc) · 3.04 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "chkware",
"displayName": "CHKware",
"description": "Write and execute .chk spec files | CHKware • Low-code API quality testing, and automation toolbox.",
"version": "0.3.0",
"publisher": "chkware",
"license": "MIT",
"icon": "icon.png",
"repository": {
"type": "git",
"url": "https://github.com/chkware/vscode-ext.git"
},
"bugs": {
"url": "https://github.com/chkware/vscode-ext/issues"
},
"engines": {
"vscode": "^1.96.0"
},
"preview": true,
"galleryBanner": {
"color": "#FFF",
"theme": "light"
},
"categories": [
"Programming Languages",
"Snippets",
"Linters",
"Formatters",
"Testing"
],
"main": "./out/extension.js",
"activationEvents": [],
"contributes": {
"commands": [
{
"command": "chkware.addFetchSnippet",
"title": "Add Fetch spec. snippet",
"category": "CHKware"
},
{
"command": "chkware.addValidateSnippet",
"title": "Add Validate spec. snippet",
"category": "CHKware"
},
{
"command": "chkware.addWorkflowSnippet",
"title": "Add Workflow spec. snippet",
"category": "CHKware"
},
{
"command": "chkware.viewDocumentation",
"title": "View docs on website",
"category": "CHKware"
}
],
"languages": [
{
"id": "chkware",
"extensions": [
".chk"
],
"aliases": [
"chkware"
],
"configuration": "./syntaxes/chkware.tmLanguage.json"
}
],
"grammars": [
{
"language": "chkware",
"scopeName": "source.chkware",
"path": "./syntaxes/chkware.tmLanguage.json"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint --ext .ts,.tsx .",
"lint:fix": "eslint --ext .ts,.tsx --fix .",
"prettier": "prettier --check './**/*.{js,jsx,ts,tsx,css,md,json}'",
"prettier:fix": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}'",
"test": "node ./out/test/runTest.js",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^19.6",
"@commitlint/config-conventional": "^19.6",
"@types/node": "^22.10",
"@types/vscode": "^1.96",
"@typescript-eslint/eslint-plugin": "^8.19",
"@typescript-eslint/parser": "^8.19",
"@vscode/test-cli": "^0.0",
"@vscode/test-electron": "^2.4",
"@vscode/vsce": "^3.2",
"eslint": "^9.18",
"eslint-config-prettier": "^9.1",
"eslint-plugin-prettier": "^5.2",
"husky": "^9.1",
"lint-staged": "^15.3",
"prettier": "^3.4",
"typescript": "^5.7"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.md": [
"prettier --write"
]
},
"keywords": [
"CHKware",
"RESTful API testing",
"testing",
"API testing",
"API automation",
"API quality",
"API Debugger",
"API Linter",
"REST API Testing "
]
}