-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
98 lines (98 loc) · 2.68 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
{
"name": "cidr-ip-range",
"displayName": "cidr-ip-range",
"description": "Shows the ip range covered by a cidr block",
"publisher": "lukepearson",
"icon": "images/icon.png",
"repository": {
"url": "https://github.com/lukepearson/vscode-extension-cidr-ip-range"
},
"version": "0.0.9",
"engines": {
"vscode": "^1.63.0"
},
"categories": [
"Other"
],
"keywords": [
"cidr",
"cidr-range",
"ip",
"subnet",
"ranges",
"net",
"network"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./dist/extension.js",
"contributes": {
"configuration": [
{
"id": "cidr-ip-range",
"title": "cidr-ip-range",
"order": 1,
"properties": {
"cidr-ip-range.enableCodeLens": {
"type": "boolean",
"description": "Enables a CodeLens with an action to copy the CIDR range information to the clipboard",
"default": false
},
"cidr-ip-range.enableDecorator": {
"type": "boolean",
"description": "Enables the inline decorator that shows how many IP addresses are in a range",
"default": true
},
"cidr-ip-range.enableStrict": {
"type": "boolean",
"description": "Requires the CIDR range to use the first IP in the range e.g. 10.82.184.0/22 instead of 10.82.187.0/22",
"default": false
},
"cidr-ip-range.codeLensFormat": {
"type": "string",
"enum": [
"json",
"table"
],
"default": "json",
"description": "Sets the format to copy the CIDR range information as"
}
},
"additionalProperties": false
}
]
},
"scripts": {
"vscode:prepublish": "yarn run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"lint": "eslint src --ext ts --fix"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/mocha": "^9.0.0",
"@types/node": "14.x",
"@types/vscode": "^1.63.0",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"@vscode/test-electron": "^2.0.3",
"eslint": "^8.6.0",
"eslint-plugin-prettier": "^4.0.0",
"glob": "^7.2.0",
"mocha": "^9.1.3",
"prettier": "^2.5.1",
"ts-loader": "^9.2.6",
"typescript": "^4.5.4",
"webpack": "^5.66.0",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"@types/ip": "^1.1.0",
"cidr-regex": "^3.1.1",
"ip": "^2.0.1"
}
}