-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.3 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
{
"name": "entropy-scanner",
"displayName": "Entropy Scanner",
"description": "Highlight strings with high entropy",
"author": "Wayne Ashley Berry",
"license": "MIT",
"publisher": "wayneashleyberry",
"version": "1.6.0",
"repository": {
"type": "git",
"url": "https://github.com/wayneashleyberry/vscode-entropy-scanner"
},
"categories": [
"Linters",
"Other"
],
"keywords": [
"linter",
"entropy",
"secret",
"scanner",
"security",
"multi-root ready"
],
"engines": {
"vscode": "^1.43.0"
},
"activationEvents": [
"*"
],
"main": "./client/out/extension",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -b",
"watch": "tsc -b -w",
"eslint": "eslint ./client/src ./server/src --ext .ts,.tsx",
"prettier": "prettier --check --ignore-unknown '**/*'",
"postinstall": "cd client && npm install && cd ../server && npm install && cd .."
},
"devDependencies": {
"@types/minimatch": "^3.0.5",
"@types/node": "^12.12.0",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"eslint": "^7.32.0",
"prettier": "^2.4.1",
"typescript": "^4.4.3"
},
"dependencies": {
"@iarna/toml": "^2.2.5",
"blakejs": "^1.1.1",
"minimatch": "^3.0.4"
}
}