-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.12 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
{
"name": "br-tax-id-generator",
"displayName": "Brazil's tax id",
"description": "Generates and inserts Tax Identification Numbers valids in Brazil",
"version": "1.0.1",
"license": "MIT",
"bugs": {
"url": "https://github.com/abensur/vscode-br-tax-id-generator/issues"
},
"homepage": "https://github.com/abensur/vscode-br-tax-id-generator",
"repository": {
"type": "git",
"url": "https://github.com/abensur/vscode-br-tax-id-generator"
},
"publisher": "abensur",
"engines": {
"vscode": "0.10.x"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:br-tax-id-generator.cnpj",
"onCommand:br-tax-id-generator.cpf"
],
"main": "./extension",
"contributes": {
"commands": [
{
"command": "br-tax-id-generator.cnpj",
"title": "Brazil's tax id: Generate CNPJ"
},
{
"command": "br-tax-id-generator.cpf",
"title": "Brazil's tax id: Generate CPF"
}
]
},
"devDependencies": {
"vscode": "0.10.x"
},
"icon": "images/icon.png",
"dependencies": {
"@fnando/cnpj": "^0.1.1",
"@fnando/cpf": "^0.1.1"
}
}