-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
53 lines (53 loc) · 1.34 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
48
49
50
51
52
53
{
"name": "cocoapods-snippets",
"displayName": "CocoaPods Snippets",
"description": "A snippet extension for VSCode to set .podspec or .podfile files for CocoaPods.",
"version": "1.0.0",
"publisher": "Agenric",
"icon": "images/cocoapods.png",
"galleryBanner": {
"color": "#0273D4",
"theme": "dark"
},
"license": "SEE LICENSE IN LICENSE",
"repository": {
"type": "git",
"url": "https://github.com/Agenric/VSCode-CocoaPods-Snippets.git"
},
"engines": {
"vscode": "^1.10.0"
},
"categories": [
"Snippets",
"Other"
],
"contributes": {
"snippets": [
{
"language": "ruby",
"path": "./snippets/podfile.json"
},
{
"language": "ruby",
"path": "./snippets/podspec.json"
}
]
},
"keywords": [
"Cocoapods",
"Podfile",
"podspec"
],
"bugs": {
"url": "https://github.com/Agenric/VSCode-CocoaPods-Snippets/issues"
},
"homepage": "https://github.com/Agenric/VSCode-CocoaPods-Snippets",
"author": {
"name": "agenric(Agenric Won)",
"email": "[email protected]",
"url": "http://blog.agenric.cn"
},
"dependencies": {
"npm": "^6.2.0"
}
}