forked from mattn/vscode-lisp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 975 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
{
"name": "Lisp",
"version": "0.1.7",
"publisher": "mattn",
"description": "Lisp syntax highlight",
"author": {
"name": "Yasuhiro Matsumoto (a.k.a mattn)"
},
"icon": "images/lisp.png",
"categories": ["Languages"],
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/mattn/vscode-lisp"
},
"dependencies": {},
"devDependencies": {
"typescript": "^1.6.2",
"vscode": "0.10.x"
},
"engines": {
"vscode": "^0.10.10"
},
"contributes": {
"languages": [{
"id": "lisp",
"aliases": ["Lisp", "lisp"],
"extensions": [".lisp", ".cl", ".asd", ".ros", ".lsp", ".el"],
"configuration": "./Lisp.configuration.json"
}],
"grammars": [{
"language": "lisp",
"scopeName": "source.lisp",
"path": "./syntaxes/Lisp.tmLanguage"
}]
},
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/mattn/vscode-lisp/issues"
}
}