-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.19 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.19 KB
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
{
"name": "api-validator",
"displayName": "API Validator",
"publisher": "SEOSiri",
"description": "An intelligent assistant for evaluating and securing APIs.",
"version": "0.0.1",
"icon": "media/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/SEOSiri-Official/api-validator.git"
},
"engines": {
"vscode": "^1.83.0"
},
"categories": [
"Linters",
"Testing",
"Other"
],
"keywords": [
"api",
"validator",
"linter",
"security",
"governance",
"rest",
"graphql",
"threat",
"malware",
"phishing",
"audit",
"documentation",
"quality",
"testing",
"sla",
"endpoint"
],
"activationEvents": [
"onLanguage:yaml"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "api-validator.newReviewFile",
"title": "API Validator: New API Review File",
"category": "API Validator"
},
{
"command": "api-validator.scanProjectForApis",
"title": "API Validator: Scan Project for APIs",
"category": "API Validator"
},
{
"command": "api-validator.testEndpoint",
"title": "API Validator: Test Endpoint Latency",
"category": "API Validator"
}
],
"yamlValidation": [
{
"fileMatch": "*.api-review.yml",
"url": "./schemas/api-review.schema.json"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./ && npm run copy-assets",
"copy-assets": "cpy \"./{data,schemas}/**/*\" \"./out/\"",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "vscode-test"
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@types/node-fetch": "^2.6.13",
"@types/vscode": "^1.83.0",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"@vscode/test-cli": "^0.0.4",
"@vscode/test-electron": "^2.3.8",
"cpy-cli": "^5.0.0",
"eslint": "^8.56.0",
"typescript": "^5.3.3"
},
"dependencies": {
"node-fetch": "^2.7.0",
"yaml": "^2.3.4"
}
}