-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.72 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.72 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
{
"name": "randexp",
"displayName": "randexp",
"description": "A simple extension to output a randomize value based on a regular expression. Use this to generate things like `xx123xx-113xxx-abc` from `([A-Za-z]|[0-9]){7}-([A-Za-z]|[0-9]){6}-([A-Za-z]|[0-9]){3}`. Supports various keywords like: `randexp`, `random`, `hash`, `regex`.",
"version": "0.0.2",
"publisher": "nodeGarden",
"repository": {
"type": "git",
"url": "https://github.com/nodeGarden/randexp_vscode.git"
},
"license": "UNLICENSED",
"engines": {
"vscode": "^1.85.0"
},
"keywords": ["randexp", "regex", "hash", "pattern", "random"],
"categories": [
"Other"
],
"icon": "icon.png",
"activationEvents": [
"onCommand:extension.createRandomValueByRegex"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [{
"command": "extension.createRandomValueByRegex",
"title": "Create random value by RegEx pattern (randexp, random, hash, regex)"
}]
},
"categories": ["Formatters"],
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"package": "vsce package && npm run moveVsixToDist",
"moveVsixToDist": "mkdir -p dist && mv *.vsix dist/",
"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/vscode": "^1.85.0",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"@vscode/test-cli": "^0.0.4",
"@vscode/test-electron": "^2.3.8",
"eslint": "^8.54.0",
"typescript": "^5.3.2"
},
"dependencies": {
"randexp": "^0.5.3"
}
}