forked from jalonjs/vscode-cml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 1.91 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "cml",
"displayName": "cml",
"description": "Chameleon vscode 扩展",
"version": "0.2.8",
"publisher": "wangzhiliang",
"icon": "images/logo.png",
"keywords": [
"cml",
"chameleon",
"weex",
"miniapp",
"javascript"
],
"engines": {
"vscode": "^1.23.0"
},
"repository": {
"type": "git",
"url": "https://github.com/jalonjs/vscode-cml.git"
},
"categories": [
"Programming Languages",
"Snippets",
"Linters",
"Formatters",
"Other",
"Extension Packs",
"Language Packs"
],
"activationEvents": [
"onLanguage:cml"
],
"main": "./client/out/extension",
"contributes": {
"languages": [
{
"id": "cml",
"aliases": [
"cml"
],
"extensions": [
".cml",
".interface"
],
"configuration": "contributes/languages/cml.configuration.json"
}
],
"grammars": [
{
"language": "cml",
"scopeName": "source.cml",
"path": "contributes/syntaxes/cml.grammars.json",
"embeddedLanguages": {
"source.css": "css",
"source.css.scss": "scss",
"source.css.less": "less",
"source.sass": "sass",
"source.stylus": "stylus",
"source.js": "javascript",
"source.ts": "typescript",
"source.json": "json"
}
}
],
"snippets": [
{
"language": "cml",
"path": "contributes/snippets/snippets.json"
}
]
},
"scripts": {
"vscode:prepublish": "cd client && npm run update-vscode && cd .. && npm run compile",
"compile": "tsc -b",
"watch": "tsc -b -w",
"postinstall": "cd client && npm install && cd ../server && npm install && cd ..",
"test": "sh ./scripts/e2e.sh"
},
"devDependencies": {
"@types/mocha": "^5.2.6",
"@types/node": "^8.0.0",
"tslint": "^5.11.0",
"typescript": "^3.1.3"
}
}