forked from aroary/lorem_ipsum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 983 Bytes
/
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
{
"name": "loremipsum",
"displayName": "lorem ipsum",
"version": "1.0.0",
"description": "Add lorem ipsum to your code",
"publisher": "aroary",
"main": "index.js",
"scripts": {},
"repository": {
"type": "git",
"url": "git+https://github.com/aroary/lorem_ipsum.git"
},
"engines": {
"vscode": "^1.32.0"
},
"activationEvents": [
"onCommand:lorem_ipsum.helloworld",
"onCommand:lorem_ipsum.generate"
],
"contributes": {
"commands": [
{
"command": "lorem_ipsum.helloworld",
"title": "Hello World"
},
{
"command": "lorem_ipsum.generate",
"title": "Generate Lorem Ipsum"
}
]
},
"keywords": [
"lorem",
"ipsum"
],
"author": "aroary",
"license": "MIT",
"bugs": {
"url": "https://github.com/aroary/lorem_ipsum/issues"
},
"homepage": "https://github.com/aroary/lorem_ipsum#readme",
"devDependencies": {
"vscode": "^1.1.37"
},
"dependencies": {}
}