-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
42 lines (42 loc) · 1.02 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
{
"name": "change-case",
"main": "./lib/change-case",
"version": "0.6.5",
"description": "Change the case of selected text using node-change-case",
"repository": "https://github.com/robhurring/atom-change-case.git",
"license": "MIT",
"author": "Rob Hurring",
"contributors": [
"Philip Blyth",
"Sergey Fedorov",
"Timo Sand <timo.j.sand@gmail.com>",
"Moritz Kneilmann",
"李昕亮"
],
"engines": {
"atom": ">= 1.6.0 < 2.0.0"
},
"dependencies": {
"change-case": "~3.0.0"
},
"activationCommands": {
"atom-workspace atom-text-editor": [
"change-case:camel",
"change-case:constant",
"change-case:dot",
"change-case:lower",
"change-case:lowerFirst",
"change-case:param",
"change-case:pascal",
"change-case:path",
"change-case:sentence",
"change-case:snake",
"change-case:switch",
"change-case:swap",
"change-case:title",
"change-case:upper",
"change-case:upperFirst",
"change-case:kebab"
]
}
}