-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 1.73 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 1.73 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
{
"name": "vs-slug",
"displayName": "VS Slug",
"description": "Slugify a selection or several selections",
"version": "1.0.1",
"publisher": "neptunedesign",
"author": {
"name": "Fortez Fabrice",
"email": "contact@neptune-design.fr",
"url": "https://neptune-design.fr"
},
"repository": {
"type": "git",
"url": "https://github.com/neptunedesign/vs-slug"
},
"engines": {
"vscode": "^1.32.0"
},
"keywords": [
"slug",
"slugify",
"url"
],
"categories": [
"Formatters",
"Other"
],
"icon": "images/icon.png",
"galleryBanner": {
"color": "#423B55",
"theme": "dark"
},
"activationEvents": [
"onCommand:vs-slug.slugify"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "vs-slug.slugify",
"title": "Slugify selection"
}
],
"configuration": {
"type": "object",
"title": "VS Slug",
"properties": {
"vs-slug.customReplacements": {
"type": "array",
"default": [
[
"&",
" and "
]
],
"description": "Slug custom replacements"
},
"vs-slug.decamelize": {
"type": "boolean",
"default": true,
"description": "Slug decamelize"
},
"vs-slug.lowercase": {
"type": "boolean",
"default": true,
"description": "Slug lowercase"
},
"vs-slug.separator": {
"type": "string",
"default": "-",
"description": "Slug separator"
}
}
}
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^10.14.19",
"eslint": "^5.16.0",
"typescript": "^3.6.3",
"vscode": "^1.1.36"
},
"dependencies": {
"@sindresorhus/slugify": "^0.9.1"
}
}