-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.32 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": "vartypes",
"displayName": "varTypes",
"description": "Format strings to camelize, dasherize, etc.",
"version": "0.0.1",
"publisher": "zimplexing",
"repository": "https://github.com/zimplexing/varTypes",
"engines": {
"vscode": "^1.15.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:varTypes.to var-types or to varTypes",
"onCommand:varTypes.to varTypes or to VAR_TYPES"
],
"main": "./extension",
"contributes": {
"commands": [
{
"title": "to var-types or to varTypes",
"category": "varTypes",
"command": "varTypes.to var-types or to varTypes"
},
{
"title": "to varTypes or to VAR_TYPES",
"category": "varTypes",
"command": "varTypes.to varTypes or to VAR_TYPES"
}
]
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^2.6.1",
"vscode": "^1.1.6",
"eslint": "^4.6.1",
"@types/node": "^7.0.43",
"@types/mocha": "^2.2.42"
},
"dependencies": {
"underscore.string": "^3.3.4"
}
}