forked from mohseenrm/lit-it
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 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
54
55
56
57
58
59
60
61
62
{
"name": "lit-it",
"displayName": "lit-it",
"description": "lazy JSdoc builder, add character to your code",
"version": "1.2.10",
"publisher": "mohseenrm",
"engines": {
"vscode": "^1.6.0"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mohseenrm/lit-it/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/mohseenrm/lit-it.git"
},
"keywords": [
"JS",
"Formatters",
"DOCStrings"
],
"categories": [
"Formatters",
"Other"
],
"icon": "images/lit-it.svg",
"galleryBanner": {
"color": "#191919",
"theme": "dark"
},
"activationEvents": [
"onCommand:extension.litIt"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "extension.litIt",
"title": "Lit it!",
"description": "Add JSdocs for your JS code"
}
]
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/chai": "^4.0.1",
"@types/mocha": "^2.2.41",
"@types/node": "^6.0.82",
"chai": "^3.5.0",
"mocha": "^2.3.3",
"tslint": "^5.5.0",
"tslint-eslint-rules": "^4.1.1",
"typescript": "^2.0.3",
"vscode": "^1.1.0"
}
}